annotate level2/makefile @ 2890:1addfd8c9d5f

Revert e4a0f58a5f9b (set NITROS9DIR in makefiles) This was not done in lwtools-port and makes it more difficult to compare the trees. Therefore revert it for now. I will reapply or do it in another way later.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 24 Nov 2013 23:13:46 +0100
parents e4a0f58a5f9b
children 28ed72477814
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2046
cac62639358c new makefile
boisy
parents: 2045
diff changeset
1 include $(NITROS9DIR)/rules.mak
455
boisy
parents: 355
diff changeset
2
2059
46aa4db8204e More changes
boisy
parents: 2052
diff changeset
3 dirs = coco3 coco3_6309
341
20944721d3e6 Major makefile mods
boisy
parents: 337
diff changeset
4
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 all:
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1317
diff changeset
7 @$(ECHO) "**************************************************"
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1317
diff changeset
8 @$(ECHO) "* *"
2046
cac62639358c new makefile
boisy
parents: 2045
diff changeset
9 @$(ECHO) "* NitrOS-9 Level 2 Ports *"
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1317
diff changeset
10 @$(ECHO) "* *"
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1317
diff changeset
11 @$(ECHO) "**************************************************"
2046
cac62639358c new makefile
boisy
parents: 2045
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
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
15 clean:
2046
cac62639358c new makefile
boisy
parents: 2045
diff changeset
16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);)
1705
bd792517eea1 Updated makefiles for 50Hz distributions
boisy
parents: 1696
diff changeset
17
2046
cac62639358c new makefile
boisy
parents: 2045
diff changeset
18 # Make DSK images
cac62639358c new makefile
boisy
parents: 2045
diff changeset
19 dsk:
cac62639358c new makefile
boisy
parents: 2045
diff changeset
20 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);)
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1122
diff changeset
21
2199
eab970e382e2 Prep for nightly builds
boisy
parents: 2059
diff changeset
22 # Copy DSK images
eab970e382e2 Prep for nightly builds
boisy
parents: 2059
diff changeset
23 dskcopy:
eab970e382e2 Prep for nightly builds
boisy
parents: 2059
diff changeset
24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);)
eab970e382e2 Prep for nightly builds
boisy
parents: 2059
diff changeset
25
2046
cac62639358c new makefile
boisy
parents: 2045
diff changeset
26 # Clean DSK images
cac62639358c new makefile
boisy
parents: 2045
diff changeset
27 dskclean:
cac62639358c new makefile
boisy
parents: 2045
diff changeset
28 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);)
2216
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
29
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
30 # Info
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
31 info:
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
32 @$(foreach dir, $(dirs), ($(CD) $(dir); make info; $(ECHO));)