home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / mar94 / util / misc / flush.lha / Flush / smakefile < prev    next >
Makefile  |  1993-12-26  |  654b  |  43 lines

  1. ######################################################################
  2. #
  3. # smakefile to build Flush
  4. #
  5. #   GMD - 17 Dec 93 
  6. #
  7. #
  8. # SAS/C 6.3
  9. #
  10. ######################################################################
  11.  
  12. #SF=debug=sf
  13. SF=
  14.  
  15. O=O/
  16.  
  17. SO=ObjectName=$(O) noIcons
  18.  
  19. PROTOS=Flush_protos.h
  20.  
  21. OBJS    = $(O)Flush.o 
  22.  
  23. Flush    : $(OBJS)   
  24.     slink FROM lib:c.o $(OBJS)  TO Flush LIB lib:sc.lib \
  25.         lib:amiga.lib noIcons quiet  
  26.  
  27. $(O)Flush.o   : Flush.c 
  28.     sc nover $(SF) $(SO)   Flush
  29.  
  30. all:    indent  Flush
  31.  
  32. clean: 
  33.     Delete Flush $(OBJS) $(PROTOS)  >nil:
  34.  
  35. indent:    Flush.c
  36.     indent -gnu Flush.c
  37.  
  38. protos:    
  39.     sc nover genprotos Flush.c
  40.     @Delete  Flush_protos.h.info >nil:
  41.  
  42.  
  43.