home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / bbs / ff767.lha / FF767 / File / smakefile < prev   
Makefile  |  1992-11-21  |  478b  |  29 lines

  1. ######################################################################
  2. #
  3. # smakefile to build file
  4. #
  5. #   GMD - 14 Nov 92 
  6. #
  7. #
  8. # SAS/C 6.0
  9. #
  10. ######################################################################
  11.  
  12. O=O/
  13. SO=ObjectName=$(O) noIcons
  14.  
  15. OBJS    = $(O)file.o 
  16.  
  17. file    : $(OBJS)  
  18.     slink  FROM lib:c.o $(OBJS)  TO file LIB lib:sc.lib \
  19.         lib:amiga.lib noIcons  
  20.  
  21. $(O)file.o   : file.c 
  22.     sc nover   $(SO)   file
  23.  
  24. clean: 
  25.     delete file $(OBJS)  >nil:
  26.  
  27. indent:
  28.     indent -gnu file.c
  29.