#
# Makefile for samples  11/1/1999
#

SRCS = color.j3s cube.j3s line.j3s line2.j3s manual2.j3s \
       multiprc.j3s testcalc.j3s

OBJS = $(SRCS:.j3s=.j3d)

INSTALLDIR = ../../j3d/

.SUFFIXES: .j3s .j3d

.j3s.j3d :
	j3dasm $<

all: $(OBJS)

clean:
	rm -f *.j3d

install:
	mv *.j3d ${INSTALLDIR}
