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

  1. # Font remover make file (Amiga) - remfont 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:            remfont
  13.  
  14. # Main program
  15.  
  16. remfont:        remfont.o
  17.     blink from lib:c.o remfont.o to remfont lib lib:lc.lib smalldata nodebug
  18.  
  19. # The main program
  20.  
  21. remfont.o:      remfont.c
  22.         lc $(LCDBG) remfont.c
  23.  
  24.