Some prep for mission 2 and mission re-attempts/success

This commit is contained in:
stevenhowes
2021-03-28 22:48:32 +01:00
parent 9bbfe852a5
commit 8eba8f14e9
6 changed files with 164 additions and 12 deletions
+7 -2
View File
@@ -7,8 +7,8 @@ Linkflags = -aif -o $@
# Final targets:
@.!RunImage: @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input @.o.Intro @.o.Mission1 C:o.stubs
Link $(Linkflags) @.o.CTheEscape @.o.Graphics @.o.Sound @.o.Input @.o.Intro @.o.Mission1 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:
@@ -27,6 +27,9 @@ Linkflags = -aif -o $@
cc $(ccflags) -o @.o.Intro @.c.Intro
@.o.Mission1: @.c.Mission1
cc $(ccflags) -o @.o.Mission1 @.c.Mission1
@.o.Mission2: @.c.Mission2
cc $(ccflags) -o @.o.Mission2 @.c.Mission2
# Dynamic dependencies:
@@ -59,3 +62,5 @@ o.Intro: c.Intro
o.Intro: h.Graphics
o.Mission1: c.Mission1
o.Mission1: h.Graphics
o.Mission2: c.Mission2
o.Mission2: h.Graphics