# j3w_script/Makefile
#

all : _flight _objview _tutorial _pose _human _sample

_flight :
	cd flight; ${MAKE} all

_objview :
	cd objview; ${MAKE} all

_tutorial :
	cd tutorial; ${MAKE} all

_pose :
	cd pose; ${MAKE} all

_human :
	cd human; ${MAKE} all

_sample :
	cd sample; ${MAKE} all

install :
	cd flight; ${MAKE} install
	cd objview; ${MAKE} install
	cd tutorial; ${MAKE} install
	cd pose; ${MAKE} install
	cd human; ${MAKE} install
	cd sample; ${MAKE} install

clean :
	cd flight; ${MAKE} clean
	cd objview; ${MAKE} clean
	cd tutorial; ${MAKE} clean
	cd pose; ${MAKE} clean
	cd human; ${MAKE} clean
	cd sample; ${MAKE} clean
