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

  1. # Amiga bitmapped font builder make file (Amiga) - mkbmap V1.1
  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:            mkbmap
  13.  
  14. # Main program
  15.  
  16. mkbmap:         mkbmap.o postasm.o
  17.     blink from lib:c.o mkbmap.o postasm.o to mkbmap lib lib:lc.lib smalldata nodebug
  18.  
  19. # The assembler routines contain FPU instructions
  20.  
  21. postasm.o:      postasm.a
  22.         asm -u -m2 -iinclude: postasm.a
  23.  
  24. # The main program
  25.  
  26. mkbmap.o:       mkbmap.c    postlib.h
  27.         lc $(LCDBG) mkbmap.c
  28.