#
# Makefile for samples  11/25/1999
#

SRCS = f_camer.j3c  f_disp.j3c   f_global.j3c  falcon02.j3c  \
       windgen.j3c  airship.j3c  f_canon.j3c  f_enemy.j3c  \
       f_scene.j3c   flight.j3c

INSTALLDIR = ../../j3d/


all: flight

flight : ${SRCS}
	j3c    flight.j3c
	j3dasm flight.j3m

optimize: flight
	j3opt.pl flight.j3m
	j3dasm *.j3o

clean:
	rm -f *.j3d
	rm -f *.j3m
	rm -f *.j3o

install:
	mv *.j3d ${INSTALLDIR}
