home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Graphics / PPT / pluginsrc / sample_effect / SMakefile < prev   
Makefile  |  1999-09-08  |  1KB  |  46 lines

  1. #
  2. # This is a generic effect makefile for SAS/C
  3. #
  4. # $Id: SMakefile,v 1.1 1999/01/13 23:12:59 jj Exp jj $
  5. #
  6.  
  7. NAME = sample_effect
  8.  
  9. # Tell here which libraries you wish to link too
  10.  
  11. LINKLIBS=
  12.  
  13. # Other stuff. Nothing of major importance.
  14.  
  15. # The MAINDIR directive tells where your PPT main directory
  16. # is, so you should set it up before you try to install.
  17.  
  18. MAINDIR=work:source/c/ppt
  19. INSTDIR=modules
  20. EXE=$(NAME).effect
  21. EXE020=$(NAME)_020.effect
  22.  
  23. all : M000 M020
  24.  
  25. M000 :
  26.     sc buildprj OBJNAME=000/ PROGNAME=$(EXE)
  27.  
  28. M020 :
  29.     sc buildprj CPU=68020 NOUTILLIB PROGNAME=$(EXE020) OBJNAME=020/
  30.  
  31. clean:
  32.     Delete \#?.lnk \#?~ 020/\#?.o 000/\#?.o
  33.  
  34. clobber: clean
  35.     Delete $(EXE) $(EXE020)
  36.  
  37. install : M000 M020
  38.     slink $(EXE) TO $(MAINDIR)/$(INSTDIR)/$(EXE) STRIPDEBUG NOICONS
  39.     slink $(EXE020) TO $(MAINDIR)/$(INSTDIR)/$(EXE020) STRIPDEBUG NOICONS
  40.  
  41. installdbg : clean
  42.     sc buildprj OBJNAME=000/ PROGNAME=$(EXE) DEBUG=SF NOOPT DEF=DEBUG_MODE
  43.     copy $(EXE) TO $(MAINDIR)/$(INSTDIR) CLONE
  44.     Delete $(MAINDIR)/$(INSTDIR)/$(EXE020)
  45.  
  46.