#
# Makefile for fakepoint
#
#

OBJS= fakepoint.o

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

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

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

