home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 376.lha / DWPrint_v1.2 / src / Makefile < prev   
Encoding:
Makefile  |  1990-05-01  |  284 b   |  24 lines

  1. #
  2. # Description : Makefile for dwprint
  3. #
  4. # Author : Simon J Raybould.
  5. #
  6. # Date : 2nd January 1990
  7. #
  8.  
  9. CC= lc
  10. CFLAGS= -Lt -O
  11. #CFLAGS= -DTEST -L
  12.  
  13. all:    dwprint install
  14.  
  15. dwprint: dwprint.o
  16.  
  17. install:
  18.     copy dwprint SYS:Utilities
  19.  
  20. clean:
  21.     delete dwprint.o
  22.     delete dwprint.lnk
  23.     delete dwprint
  24.