X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=blobdiff_plain;f=makefile;h=2631b6b11a8ed60dde2a492ca0f2db83bb2879b4;hp=74729735303716524f63a12029e89bf658c6064a;hb=HEAD;hpb=f3b83c7b5212079afae3621b85ad9beb047b1ace diff --git a/makefile b/makefile index 7472973..2631b6b 100644 --- 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.