Blob Blame History Raw
commit 478476f5c8e32c5c88476f01a7d5936e5a02a56f
Author: Tom Hughes <tom@compton.nu>
Date:   Sun Apr 9 14:59:06 2017 +0100

    Rip out mason stuff - we use our own packages

diff --git a/Makefile b/Makefile
index cbfb1ba..a2f4365 100644
--- a/Makefile
+++ b/Makefile
@@ -14,21 +14,10 @@ ANGUS_DEFINES := -D'CLIPPER_INTPOINT_IMPL=mapbox::geometry::point<cInt>' -D'CLIP
 
 default: test
 
-mason_packages/headers/boost/$(BOOST_VERSION)/include:
-	./mason.sh install --header-only boost $(BOOST_VERSION)
-
-mason_packages/headers/rapidjson/$(RAPIDJSON_VERSION)/include:
-	./mason.sh install --header-only rapidjson $(RAPIDJSON_VERSION)
-
-mason_packages/headers/geometry/$(GEOMETRY_VERSION)/include:
-	./mason.sh install --header-only geometry $(GEOMETRY_VERSION)
-
-deps: mason_packages/headers/boost/$(BOOST_VERSION)/include mason_packages/headers/rapidjson/$(RAPIDJSON_VERSION)/include mason_packages/headers/geometry/$(GEOMETRY_VERSION)/include
-
-build-test: tests/* include/mapbox/geometry/* deps Makefile
+build-test: tests/* include/mapbox/geometry/* Makefile
 	$(CXX) $(RELEASE_FLAGS) tests/test.cpp tests/unit/*.cpp $(WARNING_FLAGS) $(CXXFLAGS) -isystem ./tests -o test
 
-build-debug: tests/* include/mapbox/geometry/* deps Makefile
+build-debug: tests/* include/mapbox/geometry/* Makefile
 	$(CXX) $(DEBUG_FLAGS) tests/test.cpp tests/unit/*.cpp $(WARNING_FLAGS) $(CXXFLAGS) -isystem ./tests -o test
 
 build-fixture-tester-r: