Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/p2mods/makefile @ 2876:1ca5c484c7a7
joydrv_6551L.asm: Remove spurious ! (OR) from expression
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 24 Nov 2013 15:48:17 +0100 |
parents | e4a0f58a5f9b |
children | 1addfd8c9d5f |
rev | line source |
---|---|
2758
e4a0f58a5f9b
Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents:
1407
diff
changeset
|
1 ifndef NITROS9DIR |
e4a0f58a5f9b
Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents:
1407
diff
changeset
|
2 NITROS9DIR = $(HOME)/nitros9 |
e4a0f58a5f9b
Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents:
1407
diff
changeset
|
3 endif |
e4a0f58a5f9b
Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents:
1407
diff
changeset
|
4 include $(NITROS9DIR)/rules.mak |
582 | 5 |
1363 | 6 DEPENDS = ./makefile |
978 | 7 CMDS = os9p3_sayhi sayhi tsayhi datmod tdatmod |
582 | 8 ALLOBJS = $(CMDS) |
9 | |
1407 | 10 all: banner $(ALLOBJS) |
11 | |
12 banner: | |
1366 | 13 @$(ECHO) "**************************************************" |
14 @$(ECHO) "* *" | |
15 @$(ECHO) "* 3rd Party System Modules *" | |
16 @$(ECHO) "* *" | |
17 @$(ECHO) "**************************************************" | |
582 | 18 |
19 clean: | |
20 $(RM) $(ALLOBJS) |