Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/utils/makefile @ 2739:7afa11757a81
Adding the burst script to the repo so users who have write access to the project are able to put the script on their sourceforge ssh server account.
This will allow the user to use the "make nightly" function. As long as said user has write permision to the project.
author | drencor-xeen |
---|---|
date | Fri, 04 Jan 2013 11:50:24 -0600 |
parents | 00e35931156e |
children | e4a0f58a5f9b 1f47bdb9f356 |
rev | line source |
---|---|
1407 | 1 include ../../rules.mak |
0 | 2 |
2488 | 3 dirs = boisy dasm smartwatch supercomm winfo |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
4 |
0 | 5 # Make all components |
6 all: | |
1366 | 7 @$(ECHO) "**************************************************" |
8 @$(ECHO) "* *" | |
9 @$(ECHO) "* Utilities *" | |
10 @$(ECHO) "* *" | |
11 @$(ECHO) "**************************************************" | |
1133 | 12 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 13 |
14 # Clean all components | |
15 clean: | |
1133 | 16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
17 |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
18 # Make DSK images |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
19 dsk: |
1133 | 20 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
21 |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
22 # Copy DSK images |
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
661
diff
changeset
|
23 dskcopy: |
1133 | 24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) |