models/Makefile
author Radek Brich <radek.brich@devl.cz>
Wed, 12 Dec 2007 19:59:19 +0100
branchpyrit
changeset 35 fb170fccb19f
parent 24 d0d76e8a5203
child 40 929aad02c5f2
permissions -rw-r--r--
new space partitioning structure: octree realtime_bunny updated to use octree plus other files updated to be container type independent (only user programs are supposed to include and use special containers)

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