home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Graphics / PPT / pluginsrc / gray / SMakefile < prev   
Makefile  |  1996-11-11  |  430b  |  30 lines

  1. #
  2. # This is a generic effect makefile for SAS/C
  3. #
  4. #
  5.  
  6. NAME = grayscale
  7.  
  8. # Tell here which libraries you wish to link too
  9.  
  10. LINKLIBS=
  11.  
  12. # Other stuff. Nothing of major importance.
  13.  
  14. MAINDIR=work:source/c/ppt
  15. INSTDIR=modules
  16. EXE=$(NAME).effect
  17.  
  18. all :
  19.     sc buildprj
  20.  
  21. clean:
  22.     Delete \#?.o \#?.lnk \#?~
  23.  
  24. clobber:
  25.     Delete \#?.o \#?.lnk \#?~ $(EXE)
  26.  
  27. install : all
  28.     slink $(EXE) TO $(MAINDIR)/$(INSTDIR)/$(EXE) STRIPDEBUG NOICONS
  29.  
  30.