Mercurial > hg > Members > kono > nitros9-code
annotate level1/modules/makefile @ 1228:0a49ee6bbd40
sysgo_dd and sysgo_h0 are now made
author | boisy |
---|---|
date | Tue, 22 Jul 2003 20:20:29 +0000 |
parents | 4e235f213651 |
children | 1f0995cd0431 |
rev | line source |
---|---|
1186 | 1 # Makefile for OS-9 Level One MODULES/ |
2 | |
0 | 3 include ../../Makefile.rules |
4 | |
5 DEPENDS = ./Makefile | |
355 | 6 TPB = $(3RDPARTY)/booters |
0 | 7 |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
8 BOOTERS = boot_1773_6ms boot_1773_30ms \ |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
9 boot_burke boot_idelba boot_rampak boot_wd1002 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
10 BOOTTRACK = oscode $(BOOTERS) |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
11 KERNEL = os9 os9p2 |
1228 | 12 SYSMODS = ioman init sysgo_dd sysgo_h0 |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
13 CLOCKS = clock_elim clock_disto2 clock_disto4 clock_bnb \ |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
14 clock_smart clock_harris clock_tc3 clock_soft \ |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
15 clock_soft_50hz |
1186 | 16 |
17 RBF = rbf.mn \ | |
18 ccdisk.dr cchdisk.dr \ | |
19 ddd0_35s.dd d0_35s.dd d1_35s.dd d2_35s.dd d3_35s.dd \ | |
293
404d2a69646f
Added more help files for additional verbose descriptors, removed
boisy
parents:
291
diff
changeset
|
20 ddd0_40d.dd d0_40d.dd d1_40d.dd d2_40d.dd \ |
404d2a69646f
Added more help files for additional verbose descriptors, removed
boisy
parents:
291
diff
changeset
|
21 ddd0_80d.dd d0_80d.dd d1_80d.dd d2_80d.dd \ |
1186 | 22 h0_15.dd h1_15.dd h0_35.dd h1_35.dd |
23 | |
24 SCF = scf.mn \ | |
25 aciapak.dr modpak.dr nildrv.dr printer.dr rs232.dr sscpak.dr ccio.dr \ | |
26 co32.io co80.io grfo.io \ | |
291
7625c04ca486
Removed dd and d0-d3.asm to be replaced with verbose descriptor filenames
boisy
parents:
275
diff
changeset
|
27 m1.dd m2.dd nil.dd p.dd pipe.dd ssc.dd \ |
1186 | 28 term_t1.dd t1.dd t2.dd t3.dd term32.dd term80.dd |
29 | |
30 PIPE = pipeman.mn \ | |
31 piper.dr \ | |
32 pipe.dd | |
33 | |
294 | 34 HELP = co32.hp co80.hp \ |
35 ddd0_35s.hp d0_35s.hp d1_35s.hp d2_35s.hp d3_35s.hp \ | |
36 ddd0_40d.hp d0_40d.hp d1_40d.hp d2_40d.hp \ | |
37 ddd0_80d.hp d0_80d.hp d1_80d.hp d2_80d.hp \ | |
38 grfo.hp h0_15.hp \ | |
179 | 39 h0_35.hp h1_15.hp h1_35.hp m1.hp m2.hp nil.hp p.hp pipe.hp \ |
40 ssc.hp t1.hp t2.hp t3.hp term32.hp term80.hp config.hp | |
177 | 41 |
1186 | 42 ALLOBJS = $(BOOTTRACK) $(KERNEL) $(SYSMODS) $(CLOCKS) $(RBF) $(SCF) $(PIPE) |
0 | 43 |
177 | 44 all: $(ALLOBJS) $(HELP) |
0 | 45 |
1186 | 46 # Special cases |
47 | |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
48 boot_1773_6ms: boot_1773.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
49 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aDNum=0 -aSTEP=0 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
50 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
51 boot_1773_30ms: boot_1773.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
52 $(AS) $< $(ASOUT)$@ $(AFLAGS) -aDNum=0 -aSTEP=3 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
53 |
1186 | 54 # Floppy descriptors |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
55 SSDD35 = -aCyls=35 -aSides=1 -aSectTrk=18 -aSectTrk0=18 \ |
958 | 56 -aInterlv=3 -aSAS=8 -aDensity=1 |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
57 DSDD40 = -aCyls=40 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \ |
958 | 58 -aInterlv=3 -aSAS=8 -aDensity=1 |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
59 DSDD80 = -aCyls=80 -aSides=2 -aSectTrk=18 -aSectTrk0=18 \ |
958 | 60 -aInterlv=3 -aSAS=8 -aDensity=3 |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
61 |
1138 | 62 ddd0_35s.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
63 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=0 -aDD=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
64 |
1138 | 65 d0_35s.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
66 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=0 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
67 |
1138 | 68 d1_35s.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
69 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
70 |
1138 | 71 d2_35s.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
72 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=2 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
73 |
1138 | 74 d3_35s.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
75 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(SSDD35) -aDNum=3 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
76 |
1138 | 77 ddd0_40d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
78 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=0 -aDD=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
79 |
1138 | 80 d0_40d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
81 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=0 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
82 |
1138 | 83 d1_40d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
84 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
85 |
1138 | 86 d2_40d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
87 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD40) -aDNum=2 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
88 |
1138 | 89 ddd0_80d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
90 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=0 -aDD=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
91 |
1138 | 92 d0_80d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
93 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=0 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
94 |
1138 | 95 d1_80d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
96 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=1 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
97 |
1138 | 98 d2_80d.dd: ccdiskdesc.asm |
415
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
99 $(AS) $< $(ASOUT)$@ $(AFLAGS) $(DSDD80) -aDNum=2 |
79e595f4497b
All CCDisk device descriptors are now made from dx.asm
boisy
parents:
361
diff
changeset
|
100 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
101 oscode: oscode.asm |
236 | 102 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDragon64=0 |
235
3fa31ecd389a
Modified oscode to allow conditional assembly for Dragon 64
boisy
parents:
231
diff
changeset
|
103 |
1228 | 104 sysgo_dd: sysgo.asm |
105 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aDD=1 | |
106 | |
107 sysgo_h0: sysgo.asm | |
108 $(AS) $(AFLAGS) $(ASOUT)$@ $< | |
275 | 109 |
1186 | 110 # Clocks |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
111 clock_elim: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
112 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCElim=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
113 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
114 clock_disto2: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
115 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCDsto2=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
116 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
117 clock_disto4: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
118 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCDsto4=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
119 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
120 clock_bnb: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
121 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCBB=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
122 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
123 clock_smart: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
124 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCSmart=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
125 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
126 clock_harris: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
127 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCHarrs=1 -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
128 |
506 | 129 clock_tc3: clock.asm |
130 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aRTCTC3=1 -aTPS=60 | |
131 | |
1213
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
132 clock_soft: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
133 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aTPS=60 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
134 |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
135 clock_soft_50hz: clock.asm |
4e235f213651
Lots of changes: bootscripts and bootlists added, sources massaged...
boisy
parents:
1186
diff
changeset
|
136 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aTPS=50 |
506 | 137 |
0 | 138 clean: |
139 $(RM) $(ALLOBJS) | |
140 | |
1186 | 141 showobjs: |
142 @$(ECHO) $(ALLOBJS) | |
143 | |
144 showboottrack: | |
145 @$(ECHO) $(BOOTTRACK) | |
146 | |
147 showkernel: | |
148 @$(ECHO) $(KERNEL) | |
149 | |
150 showsysmods: | |
151 @$(ECHO) $(SYSMODS) | |
152 | |
153 showclocks: | |
154 @$(ECHO) $(CLOCKS) | |
155 | |
156 showrbf: | |
157 @$(ECHO) $(RBF) | |
158 | |
159 showscf: | |
160 @$(ECHO) $(SCF) | |
161 | |
162 showpipe: | |
163 @$(ECHO) $(PIPE) | |
164 | |
95 | 165 identify: |
166 $(IDENT_SHORT) $(ALLOBJS) | |
107 | 167 |
323 | 168 |