home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / commodity / memminister / source / smakefile < prev   
Makefile  |  1995-02-27  |  649b  |  30 lines

  1. #
  2. #   SAS/C MakeFile  V6.2
  3. #
  4. #   MemMinister is copyright by Marcus Ohlström 1994. All rights reserved
  5. #
  6.  
  7. # See SCOPTIONS for compiler-options
  8.  
  9. SFLAGS  = define ___main=___tinymain
  10. LIBS    = lib:sc.lib lib:amiga.lib
  11. OBJS    = lib:c.o MemMinister.o
  12. REV     = MemMinister_rev
  13. GST     = MemMinister.gst
  14.  
  15. all:    MemMinister
  16.  
  17. MemMinister:
  18.         slink from $(OBJS) to MemMinister $(SFLAGS) lib $(LIBS)
  19.  
  20. MemMinister.o:
  21.         bumprev 37 $(REV)
  22.         sc gst=$(GST) MemMinister.c
  23.  
  24. $(GST):
  25.         sc makegst=$(GST) MemMinister.h
  26.  
  27. MemMinister:    MemMinister.o
  28. MemMinister.o:  MemMinister.c   $(GST)  SCOPTIONS   SMakeFile
  29. $(GST):         MemMinister.h
  30.