#
# Makefile for CaBoom
#
#

OBJS= CaBoom.o

CaBoom: $(OBJS) 
   sc NOCHECKABORT link to CaBoom with <<
$(OBJS)
<

CaBoom.o: CaBoom.c scoptions INCLUDE:CaBoom.gst
	sc CaBoom.c GST=INCLUDE:CaBoom.gst NOLINK

INCLUDE:CaBoom.gst: gst.c scoptions smakefile
	sc gst.c MAKEGST=INCLUDE:CaBoom.gst IGNORE=105 NOOPTIMIZE
	delete gst.o

dist:
	execute makedist

