models/Makefile
author Radek Brich <radek.brich@devl.cz>
Wed, 05 Dec 2007 18:54:23 +0100
branchpyrit
changeset 24 d0d76e8a5203
child 40 929aad02c5f2
permissions -rw-r--r--
new C++ demo: realtime_dragon.cc class Container moved to its own source file (from kdtree.*) new directory for models and Makefile which downloads and prepares them fixed python module path in some forgotten demos ShapeList moved to scene.h

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:
	rm -rf bunny
	rm -rf happy
	rm -rf dragon