45
|
1 include ../../Makefile.rules
|
|
2
|
|
3 DEPENDS = ./Makefile
|
65
|
4 BOOTERS = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \
|
|
5 boot_rom boot_rom_l1 boot_tc3_l1 boot_kenton_l1
|
45
|
6 ALLOBJS = $(BOOTERS)
|
|
7
|
|
8 all: $(ALLOBJS) $(DEPENDS)
|
|
9
|
|
10 clean:
|
|
11 $(RM) $(ALLOBJS)
|
|
12
|
65
|
13
|
68
|
14 boot_kenton: boot_scsi.asm
|
|
15 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=1 -aTC3=0
|
65
|
16
|
|
17 boot_rampak: boot_rampak.asm
|
|
18 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
19
|
68
|
20 boot_tc3: boot_scsi.asm
|
69
|
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2 -aKenton=0 -aTC3=1
|
65
|
22
|
|
23 boot_ide: boot_ide.asm
|
|
24 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
25
|
|
26 boot_wd1002: boot_wd1002.asm
|
|
27 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
28
|
|
29 boot_rom: boot_rom.asm
|
|
30 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
31
|
|
32 boot_rom_l1: boot_rom_l1.asm
|
|
33 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
|
|
34
|
68
|
35 boot_kenton_l1: boot_scsi.asm
|
|
36 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
|
65
|
37
|
68
|
38 boot_tc3_l1: boot_scsi.asm
|
|
39 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1 -aKenton=1 -aTC3=0
|
65
|
40
|