
ObjectFiles	=		\
			o.FontPaint3	\
			o.LoseAll	\
			o.Font00	\
			o.Font01	\
			o.Font02	\
			o.Font03	\
			o.Font04	\
			o.Font05	\
			o.Font06	\
			o.Font07	\
			o.Font08	\
			o.Font09	\
			o.Font0a	\
			o.Font0b	\
			o.Font0c	\
			o.Font0d	\
			o.Font0e	\
			o.Font0f	\
			o.Font10	\
			o.Font11	\
			o.Font12	\
			o.Font13	\
			o.Font14	\
			o.Font15	\
			o.Font16	\
			o.Font17	\


LibName		=	Font

# Template makefile which makes normal 
# .o files for use in the main static
# linking DeskLib.

# The macro $(ObjectFiles) should be set at the 
# start of this file to be a space-separated
# list of object files.
# This is done by 'Makatic'.

# The macro $(LibName) should also be set at the 
# start of this file, to be the name of the 
# DeskLib sublibrary.
# This is done by 'Makatic'.

# Compiler and linker flags, These can be anything. 
# All essential flags are included in the macros 
# $(CC) and $(ASM)
#
CCFlags		=	-ffahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_$(LibName) -I,C:
ASMFlags	=	-Stamp -NoCache -CloseExec -Quit $(ASMExtra)

CC		=	cc -c $(CCFlags)
ASM		=	objasm $(ASMFlags)


# -------------------------------------------------------
# Everything below here should probably not be changed...
# -------------------------------------------------------

# Here's what we want to make...
#
All:		$(ObjectFiles)


VPATH = @.^

.SUFFIXES:	.c .s .o

.c.o:
	$(CC) $< -o $@
	
.s.o:
	$(ASM) -from $< -to $@



# Dynamic dependencies:
o.FontPaint3:	^.c.FontPaint3
o.FontPaint3:	DeskLib:h.Font
o.FontPaint3:	DeskLib:h.Core
o.FontPaint3:	DeskLib:h.Wimp
o.FontPaint3:	DeskLib:h.SWI
o.LoseAll:	^.c.LoseAll
o.LoseAll:	DeskLib:h.Font
o.LoseAll:	DeskLib:h.Core
o.LoseAll:	DeskLib:h.Wimp
