#
# This file is public domain.
#
# $Id: smakefile 1.2 1995/10/30 19:14:10 petrin Exp petrin $
#

#DEBUG     = DEBUG=FULLFLUSH
DEBUG     =

CFLAGS    = MATH=STANDARD $(DEBUG)


test: test.o
   sc link $(CFLAGS) test.o

test.o: test.c defs.h
   sc $(CFLAGS) test.c

clean:
   delete test test.lnk test.o
