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 >
Wrap
Makefile
|
1991-06-09
|
704b
|
28 lines
# Amiga bitmapped font builder make file (Amiga) - mkbmap V1.1
# This version assumes Lattice make (lmk), C (lc), asm, blink
# Debug symbols
#LCDBG = -d0 -O # no debug, optimise
LCDBG = -d2 -O # full debugging info, optimise
#LCDBG = -d3 # full debugging info, flush regs
# Default target
all: mkbmap
# Main program
mkbmap: mkbmap.o postasm.o
blink from lib:c.o mkbmap.o postasm.o to mkbmap lib lib:lc.lib smalldata nodebug
# The assembler routines contain FPU instructions
postasm.o: postasm.a
asm -u -m2 -iinclude: postasm.a
# The main program
mkbmap.o: mkbmap.c postlib.h
lc $(LCDBG) mkbmap.c