home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Graphics / PPT / pluginsrc / transparency / SMakefile < prev    next >
Makefile  |  1997-01-11  |  499b  |  33 lines

  1. #
  2. # This is a generic effect makefile for SAS/C
  3. #
  4. #
  5.  
  6. NAME = transparency
  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. installdbg : all
  31.     copy $(EXE) TO $(MAINDIR)/$(INSTDIR)/$(EXE)
  32.  
  33.