Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/drivers/ide/makefile @ 1177:b1a826c854f0
Updated
author | boisy |
---|---|
date | Sun, 25 May 2003 15:49:45 +0000 |
parents | ca963a4eb55a |
children | c2f6949523f6 |
rev | line source |
---|---|
1137 | 1 # Curtis Boyle's IDE Driver |
2 | |
0 | 3 include ../../../Makefile.rules |
4 | |
5 DEPENDS = ./Makefile | |
1177 | 6 DRVRS = ccide_l1.dr ccide_l2.dr |
1137 | 7 DESCS = h0_ide_l1.dd h0_ide_l2.dd h1_ide_l1.dd h1_ide_l2.dd dd_ide_l1.dd dd_ide_l2.dd |
1177 | 8 ALLOBJS = $(DRVRS) $(DESCS) |
36
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
9 IDEL1FLAGS = $(AFLAGS) -aLevel=1 |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
10 IDEL2FLAGS = $(AFLAGS) -aLevel=2 |
0 | 11 |
12 all: $(ALLOBJS) $(DEPENDS) | |
13 | |
1137 | 14 # Drivers |
36
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
15 ccide_l1.dr: ccide.asm |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
16 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
17 |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
18 ccide_l2.dr: ccide.asm |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
19 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) |
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
20 |
1137 | 21 # Descriptors |
22 # ITDRV is the Master(0)/Slave(1) switch for device descriptors | |
613
16dc49e3a104
SuperIDE driver/descriptors added, removed dd_ide.asm and h0_ide.asm in favor of one file: idedesc.asm
boisy
parents:
302
diff
changeset
|
23 h0_ide_l1.dd: idedesc.asm |
1137 | 24 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) -aITDRV=0 |
36
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
25 |
613
16dc49e3a104
SuperIDE driver/descriptors added, removed dd_ide.asm and h0_ide.asm in favor of one file: idedesc.asm
boisy
parents:
302
diff
changeset
|
26 h0_ide_l2.dd: idedesc.asm |
1137 | 27 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) -aITDRV=0 |
28 | |
29 h1_ide_l1.dd: idedesc.asm | |
30 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) -aITDRV=1 | |
31 | |
32 h1_ide_l2.dd: idedesc.asm | |
33 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) -aITDRV=1 | |
36
8b423669e5d2
Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents:
0
diff
changeset
|
34 |
613
16dc49e3a104
SuperIDE driver/descriptors added, removed dd_ide.asm and h0_ide.asm in favor of one file: idedesc.asm
boisy
parents:
302
diff
changeset
|
35 dd_ide_l1.dd: idedesc.asm |
1137 | 36 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) -aITDRV=0 |
302 | 37 |
613
16dc49e3a104
SuperIDE driver/descriptors added, removed dd_ide.asm and h0_ide.asm in favor of one file: idedesc.asm
boisy
parents:
302
diff
changeset
|
38 dd_ide_l2.dd: idedesc.asm |
1137 | 39 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) -aITDRV=0 |
302 | 40 |
0 | 41 clean: |
42 $(RM) $(ALLOBJS) | |
43 |