#
# Makefile for samples  7/10/2000
#

SRCS = note.j3c  list_2.j3c list_3.j3c list_4.j3c list_5.j3c \
       list_6.j3c list_7.j3c list_8.j3c list_9.j3c list_10.j3c \
       list_11.j3c list_12.j3c list_13.j3c list_14.j3c list_15.j3c

ASMS = $(SRCS:.j3c=.j3m)

OPTS = $(ASMS:.j3m=.j3o)

OBJS = $(OPTS:.j3o=.j3d)

INSTALLDIR = ../../j3d/

.SUFFIXES: .j3c .j3m .j3o .j3d

.j3c.j3m :
	j3c $<

.j3m.j3o :
	j3opt.pl $<

.j3o.j3d :
	j3dasm $<

all: $(ASMS) $(OPTS) $(OBJS)

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

install:
	mv *.j3d ${INSTALLDIR}
