Megatest

Makefile at [49214f61e2]
Login

File testbuild/Makefile artifact d97da57d06 part of check-in 49214f61e2


CSCOPTS=
SRCFILES=m1.scm m2.scm m3.scm

%.o : %.scm
	csc $(CSCOPTS) -J -c $< -o $*.o

cl : cl.scm m1.o m2.o
	csc $(CSCOPTS) m1.o m2.o cl.scm -o cl

gui : gui.scm m1.o m3.o
	csc $(CSCOPTS) m1.o m3.o gui.scm -o gui


clean :
	rm -f *.o *.import.scm cl gui