Tweak to mission2 movement, map editor

This commit is contained in:
stevenhowes
2021-04-06 19:52:01 +01:00
parent bf2cc9e635
commit 436fea16e4
6 changed files with 422 additions and 38 deletions
+18 -17
View File
@@ -3,42 +3,43 @@
# Toolflags:
CCflags = -c -depend !Depend -IC: -throwback -w
C++flags = -c -depend !Depend -IC: -throwback
Linkflags = -aif -o $@
ObjAsmflags = -throwback -NoCache -depend !Depend
CMHGflags =
LibFileflags = -c -o $@
Squeezeflags = -o $@
# Final targets:
@.!RunImage: @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input @.o.Intro @.o.Mission1 @.o.Mission2 C:o.stubs
Link $(Linkflags) @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input @.o.Intro @.o.Mission1 @.o.Mission2 C:o.stubs
@.!RunImage: @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input @.o.Intro \
@.o.Mission1 @.o.Mission2 C:o.stubs
Link $(Linkflags) @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input \
@.o.Intro @.o.Mission1 @.o.Mission2 C:o.stubs
# User-editable dependencies:
# Static dependencies:
@.o.CTheEscape: @.c.CTheEscape
cc $(ccflags) -o @.o.CTheEscape @.c.CTheEscape
cc $(ccflags) -o @.o.CTheEscape @.c.CTheEscape
@.o.MapEdit: @.c.MapEdit
cc $(ccflags) -o @.o.MapEdit @.c.MapEdit
@.o.Graphics: @.c.Graphics
cc $(ccflags) -o @.o.Graphics @.c.Graphics
cc $(ccflags) -o @.o.Graphics @.c.Graphics
@.o.Sound: @.c.Sound
cc $(ccflags) -o @.o.Sound @.c.Sound
cc $(ccflags) -o @.o.Sound @.c.Sound
@.o.Input: @.c.Input
cc $(ccflags) -o @.o.Input @.c.Input
cc $(ccflags) -o @.o.Input @.c.Input
@.o.Intro: @.c.Intro
cc $(ccflags) -o @.o.Intro @.c.Intro
cc $(ccflags) -o @.o.Intro @.c.Intro
@.o.Mission1: @.c.Mission1
cc $(ccflags) -o @.o.Mission1 @.c.Mission1
cc $(ccflags) -o @.o.Mission1 @.c.Mission1
@.o.Mission2: @.c.Mission2
cc $(ccflags) -o @.o.Mission2 @.c.Mission2
cc $(ccflags) -o @.o.Mission2 @.c.Mission2
# Dynamic dependencies:
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: h.Graphics
o.CTheEscape: c.CTheEscape
o.CTheEscape: C:h.swis
o.CTheEscape: C:h.kernel