annotate 3rdparty/utils/boisy/makefile @ 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. To fix this the code needed to set the envirornment variable that is in the rules.mak is now in the makefile(s) right before the include for the rules.mak file. This should fix the problem for those who do not have the NITROS9DIR envirornment variable preset.
author drencor-xeen
date Mon, 14 Jan 2013 14:37:46 -0600
parents 174d263c0995
children 1addfd8c9d5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 # OS-9 Commands/Utilities
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2 #
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3
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
4 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
5 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
6 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
7 include $(NITROS9DIR)/rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
9 DEPENDS = ./makefile
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11 CMDS = bawk del grep mode send timer bigbro font makdir \
375
abcbc4a7f1c9 Added joypoll
boisy
parents: 0
diff changeset
12 more tee joypoll
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
14 ALLOBJS = $(CMDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
15
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
16 all: banner $(ALLOBJS) $(DEPENDS)
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
17
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
18 banner:
1366
770c350f4c15 More changes
boisy
parents: 375
diff changeset
19 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 375
diff changeset
20 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 375
diff changeset
21 @$(ECHO) "* Boisy Pitre's Utilities *"
770c350f4c15 More changes
boisy
parents: 375
diff changeset
22 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 375
diff changeset
23 @$(ECHO) "**************************************************"
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
24
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26 $(RM) $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
27