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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
1 include ../../rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
2488
00e35931156e Updated
boisy
parents: 1407
diff changeset
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
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 all:
1366
770c350f4c15 More changes
boisy
parents: 1133
diff changeset
7 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1133
diff changeset
8 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1133
diff changeset
9 @$(ECHO) "* Utilities *"
770c350f4c15 More changes
boisy
parents: 1133
diff changeset
10 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1133
diff changeset
11 @$(ECHO) "**************************************************"
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
12 $(foreach dir, $(dirs), ($(CD) $(dir); make);)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
14 # Clean all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
15 clean:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
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
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
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
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1119
diff changeset
24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);)