annotate 3rdparty/drivers/ide/makefile @ 36:8b423669e5d2

Removed Boyle's IDE drivers for the time being... they don't seem to work Replaced with edition 6
author boisy
date Mon, 15 Apr 2002 20:48:57 +0000
parents 6641a883d6b0
children d1d725215c01
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 include ../../../Makefile.rules
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 DEPENDS = ./Makefile
36
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
4 DRVRS = ccide_l1.dr ccide_l2.dr
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
5 DESCS = h0_ide_l1.dd h0_ide_l2.dd
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 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
7 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
8 IDEL2FLAGS = $(AFLAGS) -aLevel=2
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10 all: $(ALLOBJS) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11
36
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
12 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
13 $(AS) $(ASOUT)$@ $< $(IDEL1FLAGS)
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
14
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
15 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
16 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS)
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 h0_ide_l1.dd: h0_ide.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)$@ $< $(IDEL1FLAGS)
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
20
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
21 h0_ide_l2.dd: h0_ide.asm
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
22 $(AS) $(ASOUT)$@ $< $(IDEL2FLAGS)
8b423669e5d2 Removed Boyle's IDE drivers for the time being... they don't seem to work
boisy
parents: 0
diff changeset
23
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
24 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25 $(RM) $(ALLOBJS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26