Mercurial > hg > Members > kono > nitros9-code
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 |
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 | 5 |
2478 | 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 | 8 # Make all components |
9 all: | |
1366 | 10 @$(ECHO) "**************************************************" |
11 @$(ECHO) "* *" | |
12 @$(ECHO) "* 3rd Party Software *" | |
13 @$(ECHO) "* *" | |
14 @$(ECHO) "**************************************************" | |
1133 | 15 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 16 |
17 # Clean all components | |
2224 | 18 clean: |
1133 | 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 | 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 | 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 | 30 dskcopy: |
1133 | 31 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) |
2216 | 32 |
33 # Info | |
34 info: | |
35 @$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));) |