######################################################################
#
# smakefile to build Flush
#
#   GMD - 22 )ct 95 
#
#
# SAS/C 6.56
#
######################################################################

#SF=debug=sf novers
#SF= nover
SF=
 
O=O/

SO=ObjectName=$(O) noIcons

PROTOS=Flush_protos.h

OBJS	= $(O)Flush.o 

Flush	: $(OBJS)   
	slink FROM lib:c.o $(OBJS)  TO Flush LIB lib:sc.lib \
		lib:amiga.lib noIcons quiet  

$(O)Flush.o   : Flush.c 
	sc $(SF) $(SO)   Flush

all:	indent  protos Flush

clean: 
	Delete Flush $(OBJS) $(PROTOS)  >nil:

indent:	Flush.c
	indent -gnu Flush.c

protos:	
	sc genprotos Flush.c
	@Delete  Flush_protos.h.info >nil:


