annotate 3rdparty/drivers/ide/makefile @ 1177:b1a826c854f0

Updated
author boisy
date Sun, 25 May 2003 15:49:45 +0000
parents ca963a4eb55a
children c2f6949523f6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1137
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
1 # Curtis Boyle's IDE Driver
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
2
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 include ../../../Makefile.rules
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 DEPENDS = ./Makefile
1177
b1a826c854f0 Updated
boisy
parents: 1170
diff changeset
6 DRVRS = ccide_l1.dr ccide_l2.dr
1137
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
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
b1a826c854f0 Updated
boisy
parents: 1170
diff changeset
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
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 all: $(ALLOBJS) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13
1137
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
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
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
21 # Descriptors
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
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
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
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
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
27 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) -aITDRV=0
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
28
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
29 h1_ide_l1.dd: idedesc.asm
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
30 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) -aITDRV=1
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
31
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
32 h1_ide_l2.dd: idedesc.asm
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
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
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
36 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS) -aITDRV=0
302
d1d725215c01 Added DD for IDE device
boisy
parents: 36
diff changeset
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
200548732ba1 Added building of /h1 (slave) descriptors
boisy
parents: 613
diff changeset
39 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS) -aITDRV=0
302
d1d725215c01 Added DD for IDE device
boisy
parents: 36
diff changeset
40
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
41 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
42 $(RM) $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
43