Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/arcadepak/smash/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 = smash custom | |
9 | |
10 SYSFILES = flags.dat ia.fnt smash.dat smash.hsc | |
11 ROOTFILES = | |
12 | |
13 ALLOBJS = $(CMDS) | |
14 | |
15 all: $(ALLOBJS) | |
16 | |
17 clean: | |
18 $(RM) $(ALLOBJS) | |
19 | |
20 showobjs: | |
21 @$(ECHO) $(CMDS) | |
22 | |
23 showroot: | |
24 @$(ECHO) $(ROOTFILES) | |
25 | |
26 showsys: | |
27 @$(ECHO) $(SYSFILES) |