
ObjectFiles	=		\
			o.CheckHeap	\
			o.Compact	\
			o.Mem	\
			o.MidExtend	\
			o.MoveAnchor	\
			o.Size	\


LibName		=	Mem

# 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.CheckHeap:	^.c.CheckHeap
o.CheckHeap:	^.h.MemDefs
o.CheckHeap:	DeskLib:h.Mem
o.CheckHeap:	DeskLib:h.Core
o.CheckHeap:	DeskLib:h.Error
o.Compact:	^.c.Compact
o.Compact:	^.h.MemDefs
o.Compact:	DeskLib:h.Mem
o.Compact:	DeskLib:h.Core
o.Mem:	^.c.Mem
o.Mem:	C:h.kernel
o.Mem:	^.h.MemDefs
o.Mem:	DeskLib:h.Mem
o.Mem:	DeskLib:h.Core
o.Mem:	DeskLib:h.WimpSWIs
o.Mem:	DeskLib:h.Wimp
o.Mem:	DeskLib:h.Error
o.MidExtend:	^.c.MidExtend
o.MidExtend:	Desklib:h.Error
o.MidExtend:	Desklib:h.Core
o.MidExtend:	^.h.MemDefs
o.MidExtend:	DeskLib:h.Mem
o.MoveAnchor:	^.c.MoveAnchor
o.MoveAnchor:	^.h.MemDefs
o.MoveAnchor:	DeskLib:h.Mem
o.MoveAnchor:	DeskLib:h.Core
o.Size:	^.c.Size
o.Size:	^.h.MemDefs
o.Size:	DeskLib:h.Mem
o.Size:	DeskLib:h.Core
