#
# This is a generic effect makefile for SAS/C
#
#

NAME = datatypes

# Tell here which libraries you wish to link too

LINKLIBS=

# Other stuff. Nothing of major importance.

MAINDIR=work:source/c/ppt
INSTDIR=modules
EXE=$(NAME).iomod

all : M000

M000 :
    sc buildprj OBJNAME=000/

clean:
    Delete \#?.lnk \#?~ 000/\#?.o

clobber: clean
    Delete $(EXE) $(EXE020)

install : M000
    slink $(EXE) TO $(MAINDIR)/$(INSTDIR)/$(EXE) STRIPDEBUG NOICONS

installdbg : M000
    copy $(EXE) TO $(MAINDIR)/$(INSTDIR)/ CLONE

