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

NAME = addconstant

# 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).effect
EXE020=$(NAME)_020.effect

all : M000

M000 :
    sc buildprj OBJNAME=000/ PROGNAME=$(EXE)

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

clobber: clean
    Delete $(EXE)

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

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

