# Font remover make file (Amiga) - remfont V1.0
# 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:            remfont

# Main program

remfont:        remfont.o
	blink from lib:c.o remfont.o to remfont lib lib:lc.lib smalldata nodebug

# The main program

remfont.o:      remfont.c
        lc $(LCDBG) remfont.c

