#
# SAS/C makefile for SysInfo.library/test
#
# This file is public domain.
#
# Author: Petri Nordlund <petrin@megabaud.fi>
#
# $Id: smakefile 1.3 1996/09/05 23:20:08 petrin Exp petrin $
#

#DEBUG     = DEBUG=SYMBOLFLUSH
DEBUG     =

CFLAGS    = MATH=STANDARD PARAMETERS=REGISTERS NOSTACKCHECK STRINGMERGE \
            NOCHECKABORT NOMULTIPLEINCLUDES SMALLCODE SMALLDATA $(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
