models/Makefile
branchpyrit
changeset 63 440e1ae80459
parent 62 07c2f8084719
child 64 5785cca4cdb9
--- a/models/Makefile	Wed Apr 09 11:35:59 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-ifndef $(ROOT)
-    ROOT=$(shell pwd)/..
-endif
-    
-
-all: models
-
-models: bunny happy dragon
-
-bunny:
-	wget ftp://graphics.stanford.edu/pub/3Dscanrep/bunny.tar.gz
-	tar xzf bunny.tar.gz
-	rm bunny.tar.gz
-	rm -rf bunny/data
-	mv bunny/reconstruction/* bunny
-	rmdir bunny/reconstruction
-
-happy:
-	wget ftp://graphics.stanford.edu/pub/3Dscanrep/happy/happy_recon.tar.gz
-	tar xzf happy_recon.tar.gz
-	rm happy_recon.tar.gz
-	mv happy_recon happy
-
-dragon:
-	wget ftp://graphics.stanford.edu/pub/3Dscanrep/dragon/dragon_recon.tar.gz
-	tar xzf dragon_recon.tar.gz
-	rm dragon_recon.tar.gz
-	mv dragon_recon dragon
-
-clean: ;
-
-distclean: clean
-	rm -rf bunny
-	rm -rf happy
-	rm -rf dragon