diff options
author | Christian A. Weber <chris@gna.ch> | 2020-06-27 02:27:05 +0200 |
---|---|---|
committer | Christian A. Weber <chris@gna.ch> | 2020-06-27 02:27:05 +0200 |
commit | a087024c7b97cb0e4596b3c2c26a90df29539a16 (patch) | |
tree | 3e4a5b463e9d051119029c1d413fa6dd7caf7727 /Makefile | |
parent | 48b4b129eb834937aa94f1b453069815c981db1a (diff) | |
download | gameexec-a087024c7b97cb0e4596b3c2c26a90df29539a16.tar.gz gameexec-a087024c7b97cb0e4596b3c2c26a90df29539a16.tar.bz2 gameexec-a087024c7b97cb0e4596b3c2c26a90df29539a16.zip |
DEBUG ist definiert, FileIO.S hinzugefĆ¼gt
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -8,10 +8,10 @@ CC = SC -CFLAGS = +CFLAGS = ASM = Genam -AFLAGS = -l -iINCLUDE: +AFLAGS = -l -iINCLUDE: -eDEBUG=1 LD = Slink LFLAGS = ADDSYM NOICONS @@ -35,18 +35,18 @@ LFLAGS = ADDSYM NOICONS -RAMMODS = Exec.or Memory.or LoadSeg.or Keyboard.or CDisk.or RAMLib.or\ +DISKMODS = Exec.o Memory.o LoadSeg.o Keyboard.o CDisk.o FileIO.o RAMLib.o\ + PPDecrunch.o RawDoFmt.o DrawBob.o Rnd.o FFS.o EndLabel.o + +RAMMODS = Exec.or Memory.or LoadSeg.or Keyboard.or CDisk.or FileIO.or RAMLib.or\ PPDecrunch.or RawDoFmt.or DrawBob.or Rnd.or FFS.or EndLabel.or -SYSMODS = Exec.os Memory.os LoadSeg.os Keyboard.os SysCDisk.os RAMLib.os\ +SYSMODS = Exec.os Memory.os LoadSeg.os Keyboard.os SysCDisk.os FileIO.os RAMLib.os\ PPDecrunch.os RawDoFmt.os DrawBob.os Rnd.os CDTV.os EndLabel.os -DISKMODS = Exec.o Memory.o LoadSeg.o Keyboard.o CDisk.o RAMLib.o\ - PPDecrunch.o RawDoFmt.o DrawBob.o Rnd.o FFS.o EndLabel.o - -All: Track0 Start SysStart FinalBooter Disk-Validator +All: Track0 Start SysStart FinalBooter $(RAMMODS): myexec.i $(DISKMODS): myexec.i |