annotate level1/d64/bootfiles/makefile @ 3295:6b7a7b233925 default tip

makefile: Allow PORTS with level1/2 mix https://sourceforge.net/p/nitros9/feature-requests/10/
author Tormod Volden <debian.tormod@gmail.com>
date Tue, 19 Apr 2022 18:12:17 +0200
parents 5fad6ee804ba
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
1 #
e482bb12a954 tano port
boisy
parents:
diff changeset
2 #bootfiles/makefile
e482bb12a954 tano port
boisy
parents:
diff changeset
3 #
e482bb12a954 tano port
boisy
parents:
diff changeset
4 # 2005-04-24, P.Harvey-Smith.
e482bb12a954 tano port
boisy
parents:
diff changeset
5 # Added kernels for both DS40 and DS80 disks for Dragon 64
e482bb12a954 tano port
boisy
parents:
diff changeset
6 # Added kernels for both SS80 and DS80 disks for Dragon Alpha
e482bb12a954 tano port
boisy
parents:
diff changeset
7 #
e482bb12a954 tano port
boisy
parents:
diff changeset
8 #
e482bb12a954 tano port
boisy
parents:
diff changeset
9 # 2005-12-31, P.Harvey-Smith,
e482bb12a954 tano port
boisy
parents:
diff changeset
10 # Fixed up for renamed video drivers.
e482bb12a954 tano port
boisy
parents:
diff changeset
11 #
e482bb12a954 tano port
boisy
parents:
diff changeset
12 # 2006-01-08, P.Harvey-Smith,
e482bb12a954 tano port
boisy
parents:
diff changeset
13 # Added bootrack for original Dargon Data SS40 drives.
e482bb12a954 tano port
boisy
parents:
diff changeset
14 #
e482bb12a954 tano port
boisy
parents:
diff changeset
15 # 2006-01-18, P.Harvey-Smith,
e482bb12a954 tano port
boisy
parents:
diff changeset
16 # Added ability to build for the Tano Dragon 64, using an RS-DOS
e482bb12a954 tano port
boisy
parents:
diff changeset
17 # disk controler and a 60Hz clock.
e482bb12a954 tano port
boisy
parents:
diff changeset
18 #
e482bb12a954 tano port
boisy
parents:
diff changeset
19
2694
2deaccd7ca43 Fixed tano to depend on d64
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2690
diff changeset
20 ifeq ($(PORT),)
2deaccd7ca43 Fixed tano to depend on d64
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2690
diff changeset
21 PORT=d64
2deaccd7ca43 Fixed tano to depend on d64
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2690
diff changeset
22 endif
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
23 include $(NITROS9DIR)/rules.mak
e482bb12a954 tano port
boisy
parents:
diff changeset
24
e482bb12a954 tano port
boisy
parents:
diff changeset
25 # Module directory
e482bb12a954 tano port
boisy
parents:
diff changeset
26 MD = ../modules
e482bb12a954 tano port
boisy
parents:
diff changeset
27
e482bb12a954 tano port
boisy
parents:
diff changeset
28 DEPENDS = ./makefile
e482bb12a954 tano port
boisy
parents:
diff changeset
29
2920
d0b7780ab4af dalpha: Use merged modules/makefile from d64
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
30 KERNEL = $(MD)/rel $(MD)/krn $(MD)/krnp2 $(MD)/init \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
31 $(MD)/boot_d64
e482bb12a954 tano port
boisy
parents:
diff changeset
32
e482bb12a954 tano port
boisy
parents:
diff changeset
33
e482bb12a954 tano port
boisy
parents:
diff changeset
34
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
35 BOOTFILE_COVDG_DS40 = $(MD)/ioman \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
36 $(MD)/rbf.mn $(MD)/ddisk.dr \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
37 $(MD)/ddd0_40d.dd \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
38 $(MD)/d0_40d.dd $(MD)/d1_40d.dd \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
39 $(MD)/d2_40d.dd $(MD)/d3_40d.dd\
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
40 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
41 $(MD)/vtio.dr $(MD)/covdg.io $(MD)/term_vdg.dt \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
42 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
43 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
e482bb12a954 tano port
boisy
parents:
diff changeset
44 $(MD)/clock_60hz $(MD)/clock2_soft \
e482bb12a954 tano port
boisy
parents:
diff changeset
45 $(MD)/sysgo_dd
e482bb12a954 tano port
boisy
parents:
diff changeset
46
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
47 BOOTFILE_COHR_DS40 = $(MD)/ioman \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
48 $(MD)/rbf.mn $(MD)/ddisk.dr \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
49 $(MD)/ddd0_40d.dd \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
50 $(MD)/d0_40d.dd $(MD)/d1_40d.dd \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
51 $(MD)/d2_40d.dd $(MD)/d3_40d.dd\
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
52 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
53 $(MD)/vtio.dr $(MD)/cohr.io $(MD)/term_hr.dt \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
54 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
55 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
e482bb12a954 tano port
boisy
parents:
diff changeset
56 $(MD)/clock_60hz $(MD)/clock2_soft \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
57 $(MD)/sysgo_dd
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
58
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
59 BOOTFILE_CO42_DS40 = $(MD)/ioman \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
60 $(MD)/rbf.mn $(MD)/ddisk.dr \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
61 $(MD)/ddd0_40d.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
62 $(MD)/d0_40d.dd $(MD)/d1_40d.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
63 $(MD)/d2_40d.dd $(MD)/d3_40d.dd\
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
64 $(MD)/scf.mn \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
65 $(MD)/vtio.dr $(MD)/co42.io $(MD)/term_42.dt \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
66 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
67 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
68 $(MD)/clock_60hz $(MD)/clock2_soft \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
69 $(MD)/sysgo_dd
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
70
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
71 BOOTFILE_COVDG_DS80 = $(MD)/ioman \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
72 $(MD)/rbf.mn $(MD)/ddisk.dr \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
73 $(MD)/ddd0_80d.dd \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
74 $(MD)/d0_80d.dd $(MD)/d1_80d.dd \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
75 $(MD)/d2_80d.dd $(MD)/d3_80d.dd \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
76 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
77 $(MD)/vtio.dr $(MD)/covdg.io $(MD)/term_vdg.dt \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
78 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
79 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
e482bb12a954 tano port
boisy
parents:
diff changeset
80 $(MD)/clock_60hz $(MD)/clock2_soft \
e482bb12a954 tano port
boisy
parents:
diff changeset
81 $(MD)/sysgo_dd
e482bb12a954 tano port
boisy
parents:
diff changeset
82
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
83 BOOTFILE_COHR_DS80 = $(MD)/ioman \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
84 $(MD)/rbf.mn $(MD)/ddisk.dr \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
85 $(MD)/ddd0_80d.dd \
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
86 $(MD)/d0_80d.dd $(MD)/d1_80d.dd \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
87 $(MD)/d2_80d.dd $(MD)/d3_80d.dd\
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
88 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
89 $(MD)/vtio.dr $(MD)/cohr.io $(MD)/term_hr.dt \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
90 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
91 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
92 $(MD)/clock_60hz $(MD)/clock2_soft \
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
93 $(MD)/sysgo_dd
e482bb12a954 tano port
boisy
parents:
diff changeset
94
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
95 BOOTFILE_CO42_DS80 = $(MD)/ioman \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
96 $(MD)/rbf.mn $(MD)/ddisk.dr \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
97 $(MD)/ddd0_80d.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
98 $(MD)/d0_80d.dd $(MD)/d1_80d.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
99 $(MD)/d2_80d.dd $(MD)/d3_80d.dd\
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
100 $(MD)/scf.mn \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
101 $(MD)/vtio.dr $(MD)/co42.io $(MD)/term_42.dt \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
102 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
103 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
104 $(MD)/clock_60hz $(MD)/clock2_soft \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
105 $(MD)/sysgo_dd
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
106
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
107 BOOTFILE_COVDG_SS40 = $(MD)/ioman \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
108 $(MD)/rbf.mn $(MD)/ddisk.dr \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
109 $(MD)/ddd0_40d.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
110 $(MD)/d0_40s.dd $(MD)/d1_40s.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
111 $(MD)/d2_40s.dd $(MD)/d3_40s.dd\
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
112 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
113 $(MD)/vtio.dr $(MD)/covdg.io $(MD)/term_vdg.dt \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
114 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
115 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
116 $(MD)/clock_60hz $(MD)/clock2_soft \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
117 $(MD)/sysgo_dd
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
118
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
119 BOOTFILE_COHR_SS40 = $(MD)/ioman \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
120 $(MD)/rbf.mn $(MD)/ddisk.dr \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
121 $(MD)/ddd0_40d.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
122 $(MD)/d0_40s.dd $(MD)/d1_40s.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
123 $(MD)/d2_40s.dd $(MD)/d3_40s.dd\
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
124 $(MD)/scf.mn \
2690
6e40b043d3e0 Removed coco port, added coco1 and coco2 ports.
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2101
diff changeset
125 $(MD)/vtio.dr $(MD)/cohr.io $(MD)/term_hr.dt \
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
126 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
127 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
128 $(MD)/clock_60hz $(MD)/clock2_soft \
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
129 $(MD)/sysgo_dd
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
130
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
131 BOOTFILE_CO42_SS40 = $(MD)/ioman \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
132 $(MD)/rbf.mn $(MD)/ddisk.dr \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
133 $(MD)/ddd0_40d.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
134 $(MD)/d0_40s.dd $(MD)/d1_40s.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
135 $(MD)/d2_40s.dd $(MD)/d3_40s.dd\
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
136 $(MD)/scf.mn \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
137 $(MD)/vtio.dr $(MD)/co42.io $(MD)/term_42.dt \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
138 $(MD)/scdpp.dr $(MD)/p_dpp.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
139 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
140 $(MD)/clock_60hz $(MD)/clock2_soft \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
141 $(MD)/sysgo_dd
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
142
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
143 BOOTFILES = bootfile_cohr_ds40 bootfile_covdg_ds40 bootfile_co42_ds40 \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
144 bootfile_cohr_ds80 bootfile_covdg_ds80 bootfile_co42_ds80 \
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
145 bootfile_cohr_ss40 bootfile_covdg_ss40 bootfile_co42_ss40
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
146
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
147 KERNELS = kernel
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
148
e482bb12a954 tano port
boisy
parents:
diff changeset
149 ALLOBJS = $(BOOTFILES) $(KERNELS)
e482bb12a954 tano port
boisy
parents:
diff changeset
150
e482bb12a954 tano port
boisy
parents:
diff changeset
151 all: $(ALLOBJS)
e482bb12a954 tano port
boisy
parents:
diff changeset
152
e482bb12a954 tano port
boisy
parents:
diff changeset
153 echo:
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
154 @$(ECHO) $(BOOTFILE_COVDG_DS40)
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
155
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
156 bootfile_covdg_ds40: $(BOOTFILE_COVDG_DS40) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
157 $(MERGE) $(BOOTFILE_COVDG_DS40) > $@
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
158
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
159 bootfile_cohr_ds40: $(BOOTFILE_COHR_DS40) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
160 $(MERGE) $(BOOTFILE_COHR_DS40) > $@
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
161
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
162 bootfile_co42_ds40: $(BOOTFILE_CO42_DS40) $(DEPENDS)
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
163 $(MERGE) $(BOOTFILE_CO42_DS40) > $@
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
164
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
165 bootfile_covdg_ds80: $(BOOTFILE_COVDG_DS80) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
166 $(MERGE) $(BOOTFILE_COVDG_DS80) > $@
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
167
2058
27b36e424a4d More updates
boisy
parents: 2037
diff changeset
168 bootfile_cohr_ds80: $(BOOTFILE_COHR_DS80) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
169 $(MERGE) $(BOOTFILE_COHR_DS80) > $@
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
170
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
171 bootfile_co42_ds80: $(BOOTFILE_CO42_DS80) $(DEPENDS)
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
172 $(MERGE) $(BOOTFILE_CO42_DS80) > $@
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
173
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
174 bootfile_covdg_ss40: $(BOOTFILE_COVDG_SS40) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
175 $(MERGE) $(BOOTFILE_COVDG_SS40) > $@
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
176
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
177 bootfile_cohr_ss40: $(BOOTFILE_COHR_SS40) $(DEPENDS)
2942
195b041299ec d64/dalpha bootfiles: Do not copy the makefile into the bootfile
Tormod Volden <debian.tormod@gmail.com>
parents: 2920
diff changeset
178 $(MERGE) $(BOOTFILE_COHR_SS40) > $@
2101
56f966b82dc4 Update for new build system
afra
parents: 2058
diff changeset
179
3174
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
180 bootfile_co42_ss40: $(BOOTFILE_CO42_SS40) $(DEPENDS)
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
181 $(MERGE) $(BOOTFILE_CO42_SS40) > $@
5fad6ee804ba Adding Co42 a beautiful and fast 42x24 Hi-Res screen based from CoHR code.
lfantoniosi
parents: 2942
diff changeset
182
2920
d0b7780ab4af dalpha: Use merged modules/makefile from d64
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
183 kernel: $(KERNEL) $(DEPENDS)
d0b7780ab4af dalpha: Use merged modules/makefile from d64
Tormod Volden <debian.tormod@gmail.com>
parents: 2898
diff changeset
184 $(MERGE) $(KERNEL)>$@
2036
e482bb12a954 tano port
boisy
parents:
diff changeset
185 $(PADROM) 4096 $@
e482bb12a954 tano port
boisy
parents:
diff changeset
186
e482bb12a954 tano port
boisy
parents:
diff changeset
187 clean:
e482bb12a954 tano port
boisy
parents:
diff changeset
188 $(RM) $(ALLOBJS)
e482bb12a954 tano port
boisy
parents:
diff changeset
189