annotate level2/modules/makefile @ 1631:ec6fb5543b22

Robert Gault's modifications for correcting timing errors
author boisy
date Mon, 12 Jul 2004 01:38:08 +0000
parents c40d4497d619
children a39f30a01757
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1361
diff changeset
1 include ../../rules.mak
1167
a3d0ac951684 Miscellaneous source improvements
boisy
parents: 1139
diff changeset
2
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
3 vpath %.asm kernel:$(6809L1)/modules
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
4
700
bd1333ef2844 Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents: 508
diff changeset
5 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
6 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
7 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
8 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
9 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
10 CLOCKHARRIS = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=1 -aRTCTc3=0 -aRTCSoft=0 -aMPIFlag=0
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
11 CLOCKCLOUD9 = -aRTCElim=0 -aRTCDsto2=0 -aRTCDsto4=0 -aRTCBB=0 -aRTCSmart=0 -aRTCHarrs=0 -aRTCTc3=1 -aRTCSoft=0 -aMPIFlag=0
700
bd1333ef2844 Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents: 508
diff changeset
12 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
13
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1361
diff changeset
14 DEPENDS = ./makefile
46
60432af73b7e Moved boot modules into 3rdparty directory
boisy
parents: 38
diff changeset
15 TPB = ../../3rdparty/booters
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
16
1214
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
17 BOOTERS = boot_1773_6ms boot_1773_30ms \
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
18 boot_burke boot_idelba boot_rampak boot_wd1002
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
19 BOOTTRACK = rel_32 rel_40 rel_80 $(BOOTERS) krn
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
20 KERNEL = krnp2 krnp3_perr krnp4_regdump
1315
23c681a015e1 cc3go has been renamed to SysGo
boisy
parents: 1312
diff changeset
21 SYSMODS = ioman init sysgo_h0 sysgo_dd
1265
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
22 CLOCKS = clock_60hz clock_50hz \
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
23 clock2_elim clock2_disto2 clock2_disto4 clock2_bnb \
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
24 clock2_smart clock2_harris clock2_cloud9 clock2_soft
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
25
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
26 RBF = rbf.mn \
1621
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
27 rb1773.dr rb1773_scii_ff74.dr rb1773_scii_ff58.dr \
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
28 d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
29 d0_40d.dd d1_40d.dd d2_40d.dd d0_80d.dd \
1621
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
30 d1_80d.dd d2_80d.dd \
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
31 ddd0_35s.dd ddd0_40d.dd ddd0_80d.dd \
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
32 rammer.dr r0_8k.dd r0_96k.dd r0_128k.dd r0_192k.dd \
1477
8e1202ff13a5 cc3hdisk removed with descriptors
boisy
parents: 1472
diff changeset
33 ddr0_8k.dd ddr0_96k.dd ddr0_128k.dd ddr0_192k.dd md.dd
8e1202ff13a5 cc3hdisk removed with descriptors
boisy
parents: 1472
diff changeset
34
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
35
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
36 SCF = scf.mn \
1489
d6ad827b8f59 sacia renamed to sc6551
boisy
parents: 1481
diff changeset
37 cc3io.dr vrn.dr printer.dr sio.dr sspak.dr sc6551.dr \
1595
c9a215fbb25d makefiles updated for grfint.io
boisy
parents: 1587
diff changeset
38 windint.io grfint.io vdgint.io vdgint_small.io \
1391
d422cdc01f21 Removed keydrv_at
boisy
parents: 1372
diff changeset
39 keydrv_cc3.sb snddrv_cc3.sb \
1254
5bced1e03639 Changed to new naming convention
boisy
parents: 1253
diff changeset
40 joydrv_joy.sb joydrv_6551L.sb joydrv_6552L.sb \
5bced1e03639 Changed to new naming convention
boisy
parents: 1253
diff changeset
41 joydrv_6551M.sb joydrv_6552M.sb \
1472
95c71c2a441f tx_yacia files moved to L-1, m1.asm and m2.asm removed
boisy
parents: 1391
diff changeset
42 nil.dd p.dd \
1489
d6ad827b8f59 sacia renamed to sc6551
boisy
parents: 1481
diff changeset
43 t1.dd t2_sc6551.dd t3_sc6551.dd \
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
44 ftdd.dd vi.dd ssp.dd term_sio.dt term_sc6551.dt \
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
45 term_vdg.dt term_win40.dt term_win80.dt w.dw w1.dw w2.dw \
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
46 w3.dw w4.dw w5.dw w6.dw w7.dw v1.dw v2.dw v3.dw v4.dw v5.dw \
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
47 v6.dw v7.dw
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
48
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
49 PIPE = pipeman.mn pipeman_named.mn \
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
50 piper.dr \
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
51 pipe.dd
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
52
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
53 #
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
54 # The following macros represent a collection of modules for various
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
55 # kernel tracks and bootfile configurations.
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
56 #
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
57 KERNEL_1773 = rel_32 boot_1773 krn
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
58 KERNEL_RAMPAK = rel_32 $(TPB)/boot_rampak krn
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
59 KERNEL_KENTON = rel_32 $(TPB)/boot_kenton krn
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
60 KERNEL_IDE = rel_32 $(TPB)/boot_ide krn
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
61
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
62 ALLOBJS = $(BOOTTRACK) $(KERNEL) $(SYSMODS) $(CLOCKS) $(RBF) $(SCF) $(PIPE)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
63
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
64 all: $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
65
1253
50d6f82d16d9 os9p1 and os9p2 now pulled from KERNEL/
boisy
parents: 1237
diff changeset
66 # Kernel
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
67 krn krnp2:
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
68 $(CD) kernel; make $@
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
69 $(CP) kernel/$@ .
1253
50d6f82d16d9 os9p1 and os9p2 now pulled from KERNEL/
boisy
parents: 1237
diff changeset
70
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
71 # Special cases
1237
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
72 rel_32: rel.asm
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
73 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=32
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
74
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
75 grfint.io: windint.asm
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
76 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aGrfInt=1
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
77
1621
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
78 rb1773_scii_ff74.dr: rb1773.asm
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
79 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSCII=1
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
80
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
81 rb1773_scii_ff58.dr: rb1773.asm
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
82 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSCII=1 -aSCIIALT=1
c40d4497d619 Updated makefiles and changelogs
boisy
parents: 1595
diff changeset
83
1237
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
84 rel_40: rel.asm
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
85 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=40
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
86
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
87 rel_80: rel.asm
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
88 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aWidth=80
767df8dd8f3d REL is backported from NitrOS-9 to OS-9 Level Two
boisy
parents: 1227
diff changeset
89
1214
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
90 boot_1773_6ms: boot_1773.asm
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
91 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSTEP=0
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
92
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
93 boot_1773_30ms: boot_1773.asm
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
94 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aSTEP=3
701f6a80163f bootscripts and bootlists added
boisy
parents: 1210
diff changeset
95
1315
23c681a015e1 cc3go has been renamed to SysGo
boisy
parents: 1312
diff changeset
96 sysgo_dd: sysgo.asm
1227
70923b54cc47 cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents: 1214
diff changeset
97 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aDD=1
70923b54cc47 cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents: 1214
diff changeset
98
1315
23c681a015e1 cc3go has been renamed to SysGo
boisy
parents: 1312
diff changeset
99 sysgo_h0: sysgo.asm
1227
70923b54cc47 cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents: 1214
diff changeset
100 $(AS) $< $(ASOUT)$@ $(AFLAGS)
70923b54cc47 cc3go_dd and cc3go_h0 are now part of the distribution, replacing cc3go.
boisy
parents: 1214
diff changeset
101
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
102 # Floppy descriptors
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
103 SSDD35 = -aCyls=35 -aSides=1 -aSectTrk=18 -aSectTrk0=18 \
957
681c6976c352 Added density for 80 track devices
boisy
parents: 756
diff changeset
104 -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
105 DSDD40 = -aCyls=40 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \
957
681c6976c352 Added density for 80 track devices
boisy
parents: 756
diff changeset
106 -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
107 DSDD80 = -aCyls=80 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \
957
681c6976c352 Added density for 80 track devices
boisy
parents: 756
diff changeset
108 -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
109
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
110 ddd0_35s.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
111 $(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
112
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
113 d0_35s.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
114 $(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
115
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
116 d1_35s.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
117 $(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
118
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
119 d2_35s.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
120 $(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
121
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
122 d3_35s.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
123 $(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
124
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
125 ddd0_40d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
126 $(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
127
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
128 d0_40d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
129 $(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
130
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
131 d1_40d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
132 $(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
133
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
134 d2_40d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
135 $(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
136
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
137 ddd0_80d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
138 $(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
139
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
140 d0_80d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
141 $(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
142
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
143 d1_80d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
144 $(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
145
1564
b9a87d97494d Multiple changes for next release
boisy
parents: 1489
diff changeset
146 d2_80d.dd: rb1773desc.asm
410
9ed77eeace37 All floppy disk descriptor modules now made with dx.asm and different targets
boisy
parents: 384
diff changeset
147 $(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
148
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
149 # RAM Disk descriptors
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
150 r0_8k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
151 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=8
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
152
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
153 ddr0_8k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
154 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=8 -aDD=1
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
155
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
156 r0_96k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
157 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=96
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
158
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
159 ddr0_96k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
160 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=96 -aDD=1
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
161
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
162 r0_128k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
163 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=128
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
164
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
165 ddr0_128k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
166 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=128 -aDD=1
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
167
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
168 r0_192k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
169 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=192
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
170
732
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
171 ddr0_192k.dd: r0.asm
339845ea3507 Backported rammer.asm from NitrOS-9 to OS-9 Level Two
boisy
parents: 700
diff changeset
172 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aRAMSize=192 -aDD=1
412
d5e182d35650 RAM Disk descriptors now made from rx.asm
boisy
parents: 410
diff changeset
173
756
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
174 # VDGInt Modules
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
175 vdgint.io: vdgint.asm
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
176 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aCOCO2=1
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
177
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
178 vdgint_small.io: vdgint.asm
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
179 $(AS) $(AFLAGS) $(ASOUT)$@ $<
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
180
35438411e5c7 VDGInt now backported from nitrosl2
boisy
parents: 747
diff changeset
181 # Clocks
1265
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
182 clock_60hz: clock.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
183 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aPwrLnFrq=60
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
184
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
185 clock_50hz: clock.asm
1312
d39be8bc97bc Clock and Clock2 now made from level1/MODULES
boisy
parents: 1265
diff changeset
186 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aPwrLnFrq=50
700
bd1333ef2844 Modified for new clock rules (integrated clock from NitrOS-9)
boisy
parents: 508
diff changeset
187
1265
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
188 clock2_elim: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
189 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKELIM)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
190
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
191 clock2_disto2: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
192 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO2)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
193
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
194 clock2_disto4: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
195 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKDISTO4)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
196
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
197 clock2_bnb: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
198 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKBNB)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
199
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
200 clock2_smart: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
201 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSMART)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
202
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
203 clock2_harris: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
204 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKHARRIS)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
205
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
206 clock2_cloud9: clock2.asm
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
207 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKCLOUD9)
1265
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
208
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
209 clock2_soft: clock2.asm
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
210 $(AS) $(AFLAGS) $(ASOUT)$@ $< $(CLOCKSOFT)
50eb02f90812 Removed older bootlists.
boisy
parents: 1254
diff changeset
211
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
212 clean:
1587
5f18094d961d kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents: 1576
diff changeset
213 $(CD) kernel; make $@
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
214 $(RM) $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
215
341
20944721d3e6 Major makefile mods
boisy
parents: 100
diff changeset
216 showobjs:
20944721d3e6 Major makefile mods
boisy
parents: 100
diff changeset
217 @$(ECHO) $(ALLOBJS)
20944721d3e6 Major makefile mods
boisy
parents: 100
diff changeset
218
1186
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
219 showboottrack:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
220 @$(ECHO) $(BOOTTRACK)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
221
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
222 showkernel:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
223 @$(ECHO) $(KERNEL)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
224
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
225 showsysmods:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
226 @$(ECHO) $(SYSMODS)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
227
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
228 showclocks:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
229 @$(ECHO) $(CLOCKS)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
230
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
231 showrbf:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
232 @$(ECHO) $(RBF)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
233
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
234 showscf:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
235 @$(ECHO) $(SCF)
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
236
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
237 showpipe:
0836a89b1eac Changed MODULE directory organization
boisy
parents: 1167
diff changeset
238 @$(ECHO) $(PIPE)
341
20944721d3e6 Major makefile mods
boisy
parents: 100
diff changeset
239
100
5679e0d70acf Added identify target
boisy
parents: 46
diff changeset
240 identify:
5679e0d70acf Added identify target
boisy
parents: 46
diff changeset
241 $(IDENT_SHORT) $(ALLOBJS)