

Librarys	=					\
			C:o.StubsG			\
			C:o.flexlib-32		\
			C:o.toolboxlib-32			\
			C:o.eventlib-32			\
			C:o.wimplib-32

Target		=	!RunImage

ASMFlags	=	$(ASMExtra) -Stamp -NoCache -CloseExec -Quit -throwback
CCFlags		=	$(CCExtra) -depend !Depend -throwback -I,C:,C:flexlib
LinkFlags	=	$(LinkExtra)

ASM		=	objasm $(ASMFlags)
# Yet another program that Castle cc 5.53 breaks; be sure to use a later
# version with code generation bug(s) fixed, if ever released, or a
# pre-Castle version if you can.
CC		=	cc -apcs 3/32/fpe2/swst/fp/nofpr -c $(CCFlags)
LINK		=	Link -aif $(LinkFlags)



# Don't alter anything below this...


.SUFFIXES:	.o .s .c

$(Target):	$(ObjectFiles) $(Librarys)
	$(LINK) -o $@ $(ObjectFiles) $(Librarys)

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

.c.o:
	$(CC) -o $@ $<


# Dynamic dependencies:
