home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 517a.lha / FontManipulatorForDtp_v2 / source / mkatc / makefile next >
Makefile  |  1991-06-09  |  771b  |  30 lines

  1. # CG Font .atc file builder for PPage etc. make file (Amiga) - mkatc V1.0
  2. # This version assumes Lattice make (lmk), C (lc), asm, blink
  3.  
  4. # Debug symbols
  5.  
  6. #LCDBG  = -d0 -O           # no debug,            optimise
  7.  LCDBG  = -d2 -O           # full debugging info, optimise
  8. #LCDBG  = -d3              # full debugging info, flush regs
  9.  
  10. # Default target
  11.  
  12. all:            mkatc
  13.  
  14. # The archive
  15.  
  16. archive:
  17.     delete mkatc10.lzh
  18.     lharc -r -S0 a mkatc10.lzh README mkatc mkatc.doc mkatc.c makefile isolatin1_encoding.ps pporg_encoding.ps ppext_encoding.ps ppextosf_encoding.ps windows_encoding.ps
  19.  
  20. # Main program
  21.  
  22. mkatc:          mkatc.o
  23.     blink from lib:c.o mkatc.o to mkatc lib lib:lc.lib smalldata nodebug
  24.  
  25. # The main program
  26.  
  27. mkatc.o:        mkatc.c
  28.         lc $(LCDBG) mkatc.c
  29.  
  30.