annotate 3rdparty/booters/makefile @ 65:747a7379ae50

Consolidated boot modules for Level One and Level Two
author boisy
date Wed, 01 May 2002 03:24:34 +0000
parents 4fd75b62ccb1
children 8ffca4533723
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
1 include ../../Makefile.rules
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
2
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
3 DEPENDS = ./Makefile
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
4 BOOTERS = boot_kenton boot_rampak boot_tc3 boot_ide boot_wd1002 \
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
5 boot_rom boot_rom_l1 boot_tc3_l1 boot_kenton_l1
45
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
6 ALLOBJS = $(BOOTERS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
7
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
8 all: $(ALLOBJS) $(DEPENDS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
9
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
10 clean:
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
11 $(RM) $(ALLOBJS)
2ce754e62499 Moved booters to 3rdparty directory
boisy
parents:
diff changeset
12
65
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
13
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
14 boot_kenton: boot_kenton.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
15 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
16
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
17 boot_rampak: boot_rampak.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
18 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
19
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
20 boot_tc3: boot_tc3.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
21 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
22
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
23 boot_ide: boot_ide.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
24 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
25
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
26 boot_wd1002: boot_wd1002.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
27 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
28
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
29 boot_rom: boot_rom.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
30 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
31
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
32 boot_rom_l1: boot_rom_l1.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
33 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
34
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
35 boot_kenton_l1: boot_kenton.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
36 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
37
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
38 boot_tc3_l1: boot_tc3.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
39 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=1
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
40
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
41 boot_tc3_l2: boot_tc3.asm
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
42 $(AS) $(AFLAGS) $(ASOUT)$@ $< -aLevel=2
747a7379ae50 Consolidated boot modules for Level One and Level Two
boisy
parents: 49
diff changeset
43