home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / misc / wingnuplot / source.lha / source / SMakeFile < prev    next >
Makefile  |  1994-05-21  |  1KB  |  32 lines

  1. OBJ = WinPlot.o OutlineFont.o PlotImage.o Commands.o Window.o Hooks.o
  2. ARC = WinPlot.c OutlineFont.c PlotImage.c struct.c SMakeFile 
  3.  
  4. OPT =     VERBOSE UNSCHAR STRMERGE STREQ CPU=ANY OPTIMIZE OPTIMIZERINLINELOCAL \
  5.     UTILITYLIBRARY OPTIMIZERTIME OPTIMIZERALIAS OPTIMIZERCOMPLEXITY=30 \
  6.     OPTIMIZERDEPTH=5 OPTIMIZERRECURDEPTH=3 CONSTLIBBASE DEF=__USE_SYSBASE \
  7.     MATH=IEEE
  8.  
  9. #OPT =    VERBOSE UNSCHAR STRMERGE STREQ CPU=ANY DEBUG=SF UTILITYLIBRARY CONSTLIBBASE \
  10. #    DEF=__USE_SYSBASE MATH=IEEE 
  11.  
  12. .c.o:
  13.     sc $(OPT) GST=WinPlot.gst $*.c
  14.  
  15. WinPlot: $(OBJ) SMakeFile
  16.   slink LIB:c.o+$(OBJ) to WinPlot \
  17.   LIB LIB:scmieee.lib LIB:sc.lib LIB:amiga.lib \
  18.   MAP WinPlot.MAP FHLSX \
  19.   SC SD ND 
  20. #  ADDSYM \
  21. #  LIB LIB:debug.lib LIB:memwatch.lib \
  22.  
  23. WinPlot.gst: struct.c
  24.     sc DEF=__USE_SYSBASE UNSCHAR NOOBJNAME MAKEGST=WinPlot.gst struct.c
  25.  
  26. WinPlot.o: WinPlot.c amigawin.h WinPlot.h WinPlot.gst
  27. OutlineFont.o: OutlineFont.c OutlineFont.h WinPlot.gst
  28. PlotImage.o: PlotImage.c amigawin.h WinPlot.h WinPlot.gst
  29. Commands.o: Commands.c WinPlot.h OutlineFont.h WinPlot.gst
  30. Window.o: Window.c WinPlot.h WinPlot.gst
  31. Hooks.o: Hooks.c WinPlot.h WinPlot.gst
  32.