annotate 3rdparty/makefile @ 2763:c03464c24b14

Fixed a minor typo in the arcadepak's makefile related to DriveWire3 and Becker. Updated makefile with new option nightlytest. Run option is "make nightlytest". You also need to test environment variable TESTSSHDIR and TESTSSHSERVER before using it. Also updated the nightly option so if the SOURCEUSER environment variable is not set it will report it.
author drencor-xeen
date Wed, 16 Jan 2013 17:33:46 -0600
parents e4a0f58a5f9b
children 1addfd8c9d5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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: 2731
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: 2731
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: 2731
diff changeset
3 endif
2731
baa835d68db2 Changed rules.mak to remove "-l" option in the AFLAGS. This was done to supress the display of source to terminal screen while compiling project.
drencor-xeen
parents: 2478
diff changeset
4 include $(NITROS9DIR)/rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5
2478
56179f66e43d removed libs
boisy
parents: 2224
diff changeset
6 dirs = booters drivers fmgrs p2mods subrtns utils packages
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
7
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9 all:
1366
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
10 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
11 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
12 @$(ECHO) "* 3rd Party Software *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
13 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
14 @$(ECHO) "**************************************************"
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
15 $(foreach dir, $(dirs), ($(CD) $(dir); make);)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
16
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
17 # Clean all components
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
18 clean:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
19 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);)
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
20
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
21 # Make DSK images
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
22 dsk:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
23 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);)
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
24
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
25 # Clean DSK images
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
26 dskclean:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
27 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);)
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
28
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1037
diff changeset
29 # Copy DSK images
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
30 dskcopy:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
31 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);)
2216
d096a278e068 Added info targets
boisy
parents: 2127
diff changeset
32
d096a278e068 Added info targets
boisy
parents: 2127
diff changeset
33 # Info
d096a278e068 Added info targets
boisy
parents: 2127
diff changeset
34 info:
d096a278e068 Added info targets
boisy
parents: 2127
diff changeset
35 @$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));)