#/***************************************************************************
# * smakefile
# *
# * Makefile for Erase
# *
# * August 1995, ŠLee Kindness. All rights reserved.
# *
# */

OBJS= Erase.o

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

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

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

dist:
	execute makedist

