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
|
|
14 boot_kenton: boot_kenton.asm
|
|
15 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
16
|
|
17 boot_rampak: boot_rampak.asm
|
|
18 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
19
|
|
20 boot_tc3: boot_tc3.asm
|
|
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
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
|
|
35 boot_kenton_l1: boot_kenton.asm
|
|
36 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
|
|
37
|
|
38 boot_tc3_l1: boot_tc3.asm
|
|
39 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
|
|
40
|
|
41 boot_tc3_l2: boot_tc3.asm
|
|
42 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
|
|
43
|