# Makefile for j3c sample code.
#  11/27/99

all : _flight _objview _tutorial _test

_flight :
	cd flight; ${MAKE} all

_objview :
	cd objview; ${MAKE} all

_tutorial :
	cd tutorial; ${MAKE} all

_test :
	cd test; ${MAKE} all

install :
	cd flight; ${MAKE} install
	cd objview; ${MAKE} install
	cd tutorial; ${MAKE} install
	cd test; ${MAKE} install

clean :
	cd flight; ${MAKE} clean
	cd objview; ${MAKE} clean
	cd tutorial; ${MAKE} clean
	cd test; ${MAKE} clean

