Mercurial > hg > Members > kono > nitros9-code
annotate level2/modules/makefile @ 1265:50eb02f90812
Removed older bootlists.
Split clock into two modules: Clock and Clock2
author | boisy |
---|---|
date | Tue, 19 Aug 2003 04:06:04 +0000 |
parents | 5bced1e03639 |
children | d39be8bc97bc |
rev | line source |
---|---|
1167 | 1 # Makefile for OS-9 Level Two MODULES/ |
2 | |
0 | 3 include ../../Makefile.rules |
4 | |
1253 | 5 vpath %.asm KERNEL:$(LEVEL1)/MODULES |
1186 | 6 |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
7 CLOCKELIM = -aRTCElim=1 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
8 CLOCKDISTO2 = -aRTCElim=0 -aRTCDsto2=1 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
9 CLOCKDISTO4 = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=1 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
10 CLOCKBNB = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=1 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
11 CLOCKSMART = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=1 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=1 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
12 CLOCKHARRIS = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=1 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
13 CLOCKTC3 = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=1 -aRTCSoft=0 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
14 CLOCKSOFT = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=0 -aRTCSoft=1 -aMPIFlag=0 |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
15 |
0 | 16 DEPENDS = ./Makefile |
46 | 17 TPB = ../../3rdparty/booters |
0 | 18 |
1214 | 19 BOOTERS = boot_1773_6ms boot_1773_30ms \ |
20 boot_burke boot_idelba boot_rampak boot_wd1002 | |
1237 | 21 BOOTTRACK = rel_32 rel_40 rel_80 $(BOOTERS) os9p1 |
1186 | 22 KERNEL = os9p2 os9p3_perr os9p4_regdump |
1227
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
23 SYSMODS = ioman init cc3go_h0 cc3go_dd |
1265 | 24 CLOCKS = clock_60hz clock_50hz \ |
25 clock2_elim clock2_disto2 clock2_disto4 clock2_bnb \ | |
26 clock2_smart clock2_harris clock2_tc3 clock2_soft | |
1186 | 27 |
28 RBF = rbf.mn \ | |
29 cc3disk.dr cc3hdisk.dr rammer.dr \ | |
30 d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \ | |
0 | 31 d0_40d.dd d1_40d.dd d2_40d.dd d0_80d.dd \ |
32 d1_80d.dd d2_80d.dd ddd0_35s.dd ddd0_40d.dd \ | |
33 ddd0_80d.dd r0_8k.dd r0_96k.dd r0_128k.dd r0_192k.dd \ | |
1227
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
34 ddr0_8k.dd ddr0_96k.dd ddr0_128k.dd ddr0_192k.dd md.dd \ |
1186 | 35 h0_10.dd h1_10.dd h0_15.dd h1_15.dd h0_35.dd h1_35.dd |
36 | |
37 SCF = scf.mn \ | |
1210
c04e954c87c6
Fixed MPI.Slot=00 problem in Makefile for sacia/dacia
boisy
parents:
1208
diff
changeset
|
38 cc3io.dr modpak.dr vrn.dr printer.dr sio.dr sspak.dr sacia.dr dacia.dr \ |
1186 | 39 windint.io vdgint.io vdgint_small.io \ |
1254 | 40 keydrv_cc3.sb snddrv_cc3.sb \ |
41 joydrv_joy.sb joydrv_6551L.sb joydrv_6552L.sb \ | |
42 joydrv_6551M.sb joydrv_6552M.sb \ | |
1186 | 43 m1.dd m2.dd nil.dd p.dd t1.dd t2_sacia.dd \ |
0 | 44 t3_sacia.dd t2_dacia.dd t3_dacia.dd \ |
1186 | 45 ftdd.dd vi.dd ssp.dd term_t1.dd \ |
46 term_vdg.dt term_win40.dt term_win80.dt w.dw w1.dw w2.dw \ | |
0 | 47 w3.dw w4.dw w5.dw w6.dw w7.dw v1.dw v2.dw v3.dw v4.dw v5.dw \ |
48 v6.dw v7.dw | |
49 | |
1186 | 50 PIPE = pipeman.mn pipeman_named.mn \ |
51 piper.dr \ | |
52 pipe.dd | |
53 | |
0 | 54 # |
55 # The following macros represent a collection of modules for various | |
56 # kernel tracks and bootfile configurations. | |
57 # | |
1237 | 58 KERNEL_1773 = rel_32 boot_1773 os9p1 |
59 KERNEL_RAMPAK = rel_32 $(TPB)/boot_rampak os9p1 | |
60 KERNEL_KENTON = rel_32 $(TPB)/boot_kenton os9p1 | |
61 KERNEL_IDE = rel_32 $(TPB)/boot_ide os9p1 | |
0 | 62 |
1186 | 63 ALLOBJS = $(BOOTTRACK) $(KERNEL) $(SYSMODS) $(CLOCKS) $(RBF) $(SCF) $(PIPE) |
0 | 64 |
65 all: $(ALLOBJS) | |
66 | |
1253 | 67 # Kernel |
68 os9p1 os9p2: | |
69 $(CD) KERNEL; make $@ | |
70 $(CP) KERNEL/$@ . | |
71 | |
1186 | 72 # Special cases |
1237 | 73 rel_32: rel.asm |
74 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=32 | |
75 | |
76 rel_40: rel.asm | |
77 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=40 | |
78 | |
79 rel_80: rel.asm | |
80 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=80 | |
81 | |
1214 | 82 boot_1773_6ms: boot_1773.asm |
83 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSTEP=0 | |
84 | |
85 boot_1773_30ms: boot_1773.asm | |
86 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSTEP=3 | |
87 | |
1186 | 88 cc3hdisk.dr: $(LEVEL1)/MODULES/cchdisk.asm |
89 $(AS) $< $(ASOUT)$@ $(AFLAGS) | |
90 | |
1227
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
91 cc3go_dd: cc3go.asm |
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
92 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aDD=1 |
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
93 |
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
94 cc3go_h0: cc3go.asm |
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
95 $(AS) $< $(ASOUT)$@ $(AFLAGS) |
70923b54cc47
cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents:
1214
diff
changeset
|
96 |
1186 | 97 # Floppy descriptors |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
98 SSDD35 = -aCyls=35 -aSides=1 -aSectTrk=18 -aSectTrk0=18 \ |
957 | 99 -aInterlv=3 -aSAS=8 -aDensity=1 |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
100 DSDD40 = -aCyls=40 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \ |
957 | 101 -aInterlv=3 -aSAS=8 -aDensity=1 |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
102 DSDD80 = -aCyls=80 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \ |
957 | 103 -aInterlv=3 -aSAS=8 -aDensity=3 |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
104 |
1139 | 105 ddd0_35s.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
106 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=0 -aDD=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
107 |
1139 | 108 d0_35s.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
109 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=0 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
110 |
1139 | 111 d1_35s.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
112 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
113 |
1139 | 114 d2_35s.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
115 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=2 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
116 |
1139 | 117 d3_35s.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
118 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=3 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
119 |
1139 | 120 ddd0_40d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
121 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=0 -aDD=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
122 |
1139 | 123 d0_40d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
124 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=0 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
125 |
1139 | 126 d1_40d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
127 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
128 |
1139 | 129 d2_40d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
130 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=2 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
131 |
1139 | 132 ddd0_80d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
133 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=0 -aDD=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
134 |
1139 | 135 d0_80d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
136 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=0 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
137 |
1139 | 138 d1_80d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
139 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=1 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
140 |
1139 | 141 d2_80d.dd: cc3diskdesc.asm |
410
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
142 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=2 |
9ed77eeace37
All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents:
384
diff
changeset
|
143 |
412 | 144 # RAM Disk descriptors |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
145 r0_8k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
146 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=8 |
412 | 147 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
148 ddr0_8k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
149 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=8 -aDD=1 |
412 | 150 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
151 r0_96k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
152 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=96 |
412 | 153 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
154 ddr0_96k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
155 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=96 -aDD=1 |
412 | 156 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
157 r0_128k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
158 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=128 |
412 | 159 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
160 ddr0_128k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
161 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=128 -aDD=1 |
412 | 162 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
163 r0_192k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
164 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=192 |
412 | 165 |
732
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
166 ddr0_192k.dd: r0.asm |
339845ea3507
Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents:
700
diff
changeset
|
167 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=192 -aDD=1 |
412 | 168 |
0 | 169 sacia.dr: xacia.asm |
1210
c04e954c87c6
Fixed MPI.Slot=00 problem in Makefile for sacia/dacia
boisy
parents:
1208
diff
changeset
|
170 $(AS) -aA6551=1 -aA6552=0 -aMPI.Slot=03 $(AFLAGS) $< $(ASOUT)$@ |
0 | 171 |
172 dacia.dr: xacia.asm | |
1210
c04e954c87c6
Fixed MPI.Slot=00 problem in Makefile for sacia/dacia
boisy
parents:
1208
diff
changeset
|
173 $(AS) -aA6551=0 -aA6552=1 -aMPI.Slot=03 $(AFLAGS) $< $(ASOUT)$@ |
0 | 174 |
756 | 175 # VDGInt Modules |
176 vdgint.io: vdgint.asm | |
177 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aCOCO2=1 | |
178 | |
179 vdgint_small.io: vdgint.asm | |
180 $(AS) $(AFLAGS) $(ASOUT)$@ $< | |
181 | |
182 # Clocks | |
1265 | 183 clock_60hz: clock.asm |
184 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aPwrLnFrq=60 | |
185 | |
186 clock_50hz: clock.asm | |
187 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aTkPerSec=50 | |
188 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
189 clock_elim: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
190 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKELIM) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
191 |
1265 | 192 clock2_elim: clock2.asm |
193 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKELIM) | |
194 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
195 clock_disto2: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
196 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO2) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
197 |
1265 | 198 clock2_disto2: clock2.asm |
199 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO2) | |
200 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
201 clock_disto4: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
202 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO4) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
203 |
1265 | 204 clock2_disto4: clock2.asm |
205 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO4) | |
206 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
207 clock_bnb: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
208 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKBNB) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
209 |
1265 | 210 clock2_bnb: clock2.asm |
211 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKBNB) | |
212 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
213 clock_smart: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
214 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSMART) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
215 |
1265 | 216 clock2_smart: clock2.asm |
217 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSMART) | |
218 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
219 clock_harris: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
220 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKHARRIS) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
221 |
1265 | 222 clock2_harris: clock2.asm |
223 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKHARRIS) | |
224 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
225 clock_tc3: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
226 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKTC3) |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
227 |
1265 | 228 clock2_tc3: clock2.asm |
229 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKTC3) | |
230 | |
700
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
231 clock_soft: clock.asm |
bd1333ef2844
Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents:
508
diff
changeset
|
232 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSOFT) |
508
02a8ba2b9092
Added headers to most source files, added clock2_bb.asm
boisy
parents:
432
diff
changeset
|
233 |
1265 | 234 clock2_soft: clock2.asm |
235 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSOFT) | |
236 | |
0 | 237 clean: |
1253 | 238 $(CD) KERNEL; make $@ |
0 | 239 $(RM) $(ALLOBJS) |
240 | |
341 | 241 showobjs: |
242 @$(ECHO) $(ALLOBJS) | |
243 | |
1186 | 244 showboottrack: |
245 @$(ECHO) $(BOOTTRACK) | |
246 | |
247 showkernel: | |
248 @$(ECHO) $(KERNEL) | |
249 | |
250 showsysmods: | |
251 @$(ECHO) $(SYSMODS) | |
252 | |
253 showclocks: | |
254 @$(ECHO) $(CLOCKS) | |
255 | |
256 showrbf: | |
257 @$(ECHO) $(RBF) | |
258 | |
259 showscf: | |
260 @$(ECHO) $(SCF) | |
261 | |
262 showpipe: | |
263 @$(ECHO) $(PIPE) | |
341 | 264 |
100 | 265 identify: |
266 $(IDENT_SHORT) $(ALLOBJS) |