Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/arcadepak/thexder/makefile @ 2762:9b29d654db13
Added empty_smash.txt and empty_thexder.txt to their respective folders and updated makefile(s) to use these files for their blank ROOT variables.
Corrected problem with blackcauldron makefile removing tocgen in disk creation process.
Corrected problem with christmas86 makefile removing tocgen in disk creation process.
author | drencor-xeen |
---|---|
date | Wed, 16 Jan 2013 13:16:05 -0600 |
parents | e88aef1ccaec |
children | df598bc45426 |
rev | line source |
---|---|
2761
e88aef1ccaec
Found 3 makefiles that hadn't been updated with the code needed to check to see if the NITROS9DIR variable was set or not. Correct those files.
drencor-xeen
parents:
2610
diff
changeset
|
1 ifndef NITROS9DIR |
e88aef1ccaec
Found 3 makefiles that hadn't been updated with the code needed to check to see if the NITROS9DIR variable was set or not. Correct those files.
drencor-xeen
parents:
2610
diff
changeset
|
2 NITROS9DIR = $(HOME)/nitros9 |
e88aef1ccaec
Found 3 makefiles that hadn't been updated with the code needed to check to see if the NITROS9DIR variable was set or not. Correct those files.
drencor-xeen
parents:
2610
diff
changeset
|
3 endif |
2610 | 4 include $(NITROS9DIR)/rules.mak |
5 | |
6 DEPENDS = ./makefile | |
7 | |
8 CMDS = thexder thexs | |
9 | |
10 SYSFILES = ia.fnt | |
11 | |
2762
9b29d654db13
Added empty_smash.txt and empty_thexder.txt to their respective folders and updated makefile(s) to use these files for their blank ROOT variables.
drencor-xeen
parents:
2761
diff
changeset
|
12 ROOTFILES = empty_thexder.txt |
9b29d654db13
Added empty_smash.txt and empty_thexder.txt to their respective folders and updated makefile(s) to use these files for their blank ROOT variables.
drencor-xeen
parents:
2761
diff
changeset
|
13 |
2610 | 14 ALLOBJS = $(CMDS) |
15 | |
16 all: $(ALLOBJS) | |
17 | |
18 thexder: thexder.asm | |
19 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
20 | |
21 clean: | |
22 $(RM) $(ALLOBJS) | |
23 | |
24 showobjs: | |
25 @$(ECHO) $(CMDS) | |
26 | |
27 showsys: | |
28 @$(ECHO) $(SYSFILES) | |
29 | |
30 showroot: | |
31 @$(ECHO) $(ROOTFILES) |