annotate level1/makefile @ 2798:b70d93f8d7ce lwtools-port

Updated coco1/modules/makefile and coco3/modules/makefile to help resolve issues with i(x) and s(x) descriptors. Updated level1/coco1/modules/makefile & level2/coco3/modules/makefile so that correct values would be sent to assembler when building superdesc.asm for s(x).dd and i(x).dd descriptors.
author drencor-xeen
date Mon, 28 Jan 2013 16:13:05 -0600
parents 15cebc86f723
children 4ffb283f6233
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
2701
15cebc86f723 Added coco2b
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2690
diff changeset
3 dirs = coco1 coco2 coco2b tano d64 dalpha atari
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
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
15 clean:
2047
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
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
2047
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
26 # Clean DSK images
ed46fc161cc3 All for the mix
boisy
parents:
diff changeset
27 dskclean:
ed46fc161cc3 All for the mix
boisy
parents:
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));)
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
33