summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian A. Weber <chris@gna.ch>2020-06-30 04:08:17 +0200
committerChristian A. Weber <chris@gna.ch>2020-06-30 04:08:17 +0200
commit7df3729cd47dd5d0b0eb3b1a29c8be615e29145a (patch)
tree835743547c9139309bb7dda6161e3de9576191da
parent434921a55c97c84f899b81b88b5618b857be5ce7 (diff)
downloadgameexec-7df3729cd47dd5d0b0eb3b1a29c8be615e29145a.tar.gz
gameexec-7df3729cd47dd5d0b0eb3b1a29c8be615e29145a.tar.bz2
gameexec-7df3729cd47dd5d0b0eb3b1a29c8be615e29145a.zip
Start benutzt nun unser RawDoFmt und VBR.S
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cc52dba..265aec0 100644
--- a/Makefile
+++ b/Makefile
@@ -55,20 +55,22 @@ DrawBob.o: DrawBob.i
RAMExec.S: $(RAMMODS)
+ -@Delete $@
$(LD) $(LFLAGS) FROM $(RAMMODS) TO T:__exectmp LIB LIB:small.lib
AbsLoad >NIL: -a0 -o T:__exectmp2 T:__exectmp
HexDump -L -X _ExecModuleStart -Y _ExecModuleEnd -O$@ T:__exectmp2
@Delete T:__exectmp T:__exectmp2
Track0: $(DISKMODS)
+ -@Delete $@
$(LD) $(LFLAGS) FROM $(DISKMODS) TO T:__exectmp LIB LIB:small.lib
AbsLoad >NIL: -a0 -o T:__exectmp2 T:__exectmp
Join BootBlock T:__exectmp2 as Track0
@Delete T:__exectmp T:__exectmp2 QUIET
-Start: start.o RAMExec.o
+Start: start.o vbr.o rawdofmt.o ramexec.o
-@Delete $@
- $(LD) $(LFLAGS) FROM CCLIB:argsstartup20.o start.o ramexec.o TO $* \
+ $(LD) $(LFLAGS) FROM CCLIB:argsstartup20.o start.o vbr.o rawdofmt.o ramexec.o TO $* \
LIB CCLIB:ch.lib LIB:sc.lib LIB:small.lib
SysStart: sysstart.o $(SYSMODS)