Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/arcadepak/thexder/makefile @ 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.
author | drencor-xeen |
---|---|
date | Wed, 16 Jan 2013 10:56:17 -0600 |
parents | 0db361fd74df |
children | 9b29d654db13 |
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 | |
12 ALLOBJS = $(CMDS) | |
13 | |
14 all: $(ALLOBJS) | |
15 | |
16 thexder: thexder.asm | |
17 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
18 | |
19 clean: | |
20 $(RM) $(ALLOBJS) | |
21 | |
22 showobjs: | |
23 @$(ECHO) $(CMDS) | |
24 | |
25 showsys: | |
26 @$(ECHO) $(SYSFILES) | |
27 | |
28 showroot: | |
29 @$(ECHO) $(ROOTFILES) |