annotate 3rdparty/packages/makefile @ 3257:987f995993c3

co80: Use HW port address from descriptor (via SCF and VTIO) Change the driver code to not use a hardcoded address. Change the value in the descriptor to the previously hardcoded value in the driver. Looks like someone was debugging a WordPak prototype using the cartridge ROM enable output...
author Tormod Volden <debian.tormod@gmail.com>
date Wed, 29 Aug 2018 08:49:13 +0200
parents 734862561313
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2087
92a292bd81e8 makefiles updated
boisy
parents: 1817
diff changeset
1 include $(NITROS9DIR)/rules.mak
583
2e912f6972d7 Removed extraneous CRs
boisy
parents: 486
diff changeset
2
3198
734862561313 3rdparty/packages: Rename particularly cryptic folder names
Tormod Volden <debian.tormod@gmail.com>
parents: 3086
diff changeset
3 dirs = arcadepak basic09 brainfuck deskmate3 ccompiler flightsim2 koronis kyumgai mmission multivue os9l2bbs pacos9 raakatu rescueof sierra subsim uucpbb
583
2e912f6972d7 Removed extraneous CRs
boisy
parents: 486
diff changeset
4
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1097
diff changeset
5 # Make all components
583
2e912f6972d7 Removed extraneous CRs
boisy
parents: 486
diff changeset
6 all:
1366
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
7 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
8 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
9 @$(ECHO) "* 3rd Party Packages *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
10 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
11 @$(ECHO) "**************************************************"
2913
1c1600cc9f02 makefiles: Stop if a component fails to build
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
12 $(foreach dir,$(dirs),$(MAKE) -C $(dir) &&) :
583
2e912f6972d7 Removed extraneous CRs
boisy
parents: 486
diff changeset
13
1119
f86ef3d1d7c9 Makefiles have been redone to take advantage of size and Make features
boisy
parents: 1097
diff changeset
14 # Clean all components
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
15 clean:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1121
diff changeset
16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);)
1121
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
17
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
18 # Create dsk images
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
19 dsk:
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2913
diff changeset
20 $(foreach dir,$(dirs),$(MAKE) -C $(dir) dsk &&) :
1121
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
21
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
22 # Copy dsk images
2224
22b75f9788a5 Removed redundant targets
boisy
parents: 2216
diff changeset
23 dskcopy:
2965
9edca3e61b66 3rdparty: Stop build on failing dsk or dskcopy targets
Tormod Volden <debian.tormod@gmail.com>
parents: 2913
diff changeset
24 $(foreach dir,$(dirs),$(MAKE) -C $(dir) dskcopy &&) :
1121
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
25
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
26 # Clean dsk images
6a058c03adb1 More Makefile changes
boisy
parents: 1119
diff changeset
27 dskclean:
1133
4bddc63a59fc More slight Makefile improvements
boisy
parents: 1121
diff changeset
28 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);)
2216
d096a278e068 Added info targets
boisy
parents: 2125
diff changeset
29
d096a278e068 Added info targets
boisy
parents: 2125
diff changeset
30 # Info
d096a278e068 Added info targets
boisy
parents: 2125
diff changeset
31 info:
2861
bd286ab169c7 Makefiles: Make make info prettier for dsks/ReadMe
Tormod Volden <debian.tormod@gmail.com>
parents: 2774
diff changeset
32 @$(foreach dir, $(dirs), $(MAKE) -C $(dir) info; $(ECHO);)