]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - makefile
Added the linear program solving the midatlantic region.
[dead/census-tools.git] / makefile
index 74729735303716524f63a12029e89bf658c6064a..2631b6b11a8ed60dde2a492ca0f2db83bb2879b4 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,7 +1,6 @@
 DB_NAME=census
 DB_USER=postgres
 TIGER_SRID=4269
-SHAPELY_URL=http://pypi.python.org/packages/source/S/Shapely/Shapely-1.0.14.tar.gz
 
 
 # Dark magic. We set these makefile variables to be the result of the
@@ -27,12 +26,7 @@ test:
 
 # Download or check out any third-party libraries.
 lib:
-       if [ ! -d lib/Shapely ]; then                   \
-               wget -O shapely.tar.gz $(SHAPELY_URL);  \
-               tar -xvzf shapely.tar.gz -C lib/    ;   \
-               rm shapely.tar.gz;                      \
-               mv lib/Shapely* lib/Shapely;            \
-       fi;
+       make -C lib/
 
 
 # Remove byte-compiled python code.