annotate level1/makefile @ 2059:46aa4db8204e

More changes
author boisy
date Mon, 24 Apr 2006 18:02:14 +0000
parents abea68d64225
children eab970e382e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
1 include $(NITROS9DIR)/rules.mak
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
2
2059
46aa4db8204e More changes
boisy
parents: 2052
diff changeset
3 dirs = coco tano d64 dalpha
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
4
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
5 # Make all components
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
6 all:
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
7 @$(ECHO) "**************************************************"
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
8 @$(ECHO) "* *"
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
9 @$(ECHO) "* NitrOS-9 Level 1 Ports *"
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
10 @$(ECHO) "* *"
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
11 @$(ECHO) "**************************************************"
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
12 $(foreach dir, $(dirs), ($(CD) $(dir); make);)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
13
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
14 # Clean all components
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
15 clean: dskclean
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
17
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
18 # Make DSK images
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
19 dsk:
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
20 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);)
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
21
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
22 # Clean DSK images
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
23 dskclean:
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);)