mirror of
https://github.com/stevenhowes/CTheEscape.git
synced 2026-05-27 00:03:27 +01:00
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
# Project: CTheEscape
|
|
|
|
|
|
# Toolflags:
|
|
CCflags = -c -depend !Depend -IC: -throwback -w
|
|
Linkflags = -aif -o $@
|
|
|
|
|
|
# Final targets:
|
|
@.!RunImage: @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input C:o.stubs
|
|
Link $(Linkflags) @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input C:o.stubs
|
|
|
|
|
|
# User-editable dependencies:
|
|
|
|
|
|
# Static dependencies:
|
|
@.o.CTheEscape: @.c.CTheEscape
|
|
cc $(ccflags) -o @.o.CTheEscape @.c.CTheEscape
|
|
@.o.Graphics: @.c.Graphics
|
|
cc $(ccflags) -o @.o.Graphics @.c.Graphics
|
|
@.o.Sound: @.c.Sound
|
|
cc $(ccflags) -o @.o.Sound @.c.Sound
|
|
@.o.Input: @.c.Input
|
|
cc $(ccflags) -o @.o.Input @.c.Input
|
|
|
|
# Dynamic dependencies:
|
|
o.Sound: c.Sound
|
|
o.Sound: C:h.swis
|
|
o.Sound: C:h.kernel
|
|
o.Sound: C:h.kernel
|
|
o.Sound: h.Sound
|
|
o.Graphics: c.Graphics
|
|
o.Graphics: C:h.swis
|
|
o.Graphics: C:h.kernel
|
|
o.Graphics: C:h.kernel
|
|
o.Graphics: c.Graphics
|
|
o.Graphics: C:h.swis
|
|
o.Graphics: C:h.kernel
|
|
o.Graphics: C:h.kernel
|
|
o.Input: c.Input
|
|
o.Input: C:h.swis
|
|
o.Input: C:h.kernel
|
|
o.Input: C:h.kernel
|
|
o.Input: c.Input
|
|
o.Input: C:h.swis
|
|
o.Input: C:h.kernel
|
|
o.Input: C:h.kernel
|
|
o.CTheEscape: c.CTheEscape
|
|
o.CTheEscape: C:h.swis
|
|
o.CTheEscape: C:h.kernel
|
|
o.CTheEscape: C:h.kernel
|
|
o.CTheEscape: h.Sound
|
|
o.CTheEscape: c.CTheEscape
|
|
o.CTheEscape: C:h.swis
|
|
o.CTheEscape: C:h.kernel
|
|
o.CTheEscape: C:h.kernel
|
|
o.CTheEscape: h.Sound
|