annotate level1/modules/makefile @ 198:90fc6b3fdbdd

Fixed Makefile
author boisy
date Sun, 14 Jul 2002 18:00:33 +0000
parents b4c3a13097a7
children 3303186f9898
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
50
5f64b137c6be Moved boot_rom to 3rdparty
boisy
parents: 0
diff changeset
4 TPB = ../../3rdparty/booters
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5
50
5f64b137c6be Moved boot_rom to 3rdparty
boisy
parents: 0
diff changeset
6 BOOTERS = oscode boot_1773 $(TPB)/boot_rom_l1 rom_vectors
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 KERNELS = os9 os9p2
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 SYSMODS = rominfo ioman init
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9 CLOCKS = clock.60hz clock.50hz
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10 FMGRS = scf.mn rbf.mn pipeman.mn
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11 DRIVERS = aciapak.dr cchdisk.dr ccdisk.dr modpak.dr nildrv.dr \
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 piper.dr printer.dr rs232.dr sscpak.dr ccio.dr
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13 IOSUBS = co32.io co80.io grfo.io
181
b4c3a13097a7 Added dd default device
boisy
parents: 179
diff changeset
14 DESCS = dd.dd d0.dd d1.dd d2.dd d3.dd h0_15.dd h1_15.dd h0_35.dd \
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
15 h1_35.dd m1.dd m2.dd nil.dd p.dd pipe.dd ssc.dd t1.dd \
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
16 t2.dd t3.dd term32.dd term80.dd
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
17 SYSGOS = sysgo sysgo_rom
181
b4c3a13097a7 Added dd default device
boisy
parents: 179
diff changeset
18 HELP = co32.hp co80.hp dd.hp d0.hp d1.hp d2.hp d3.hp grfo.hp h0_15.hp \
179
d9c51aa08edc Remved uppercase .hp files
boisy
parents: 177
diff changeset
19 h0_35.hp h1_15.hp h1_35.hp m1.hp m2.hp nil.hp p.hp pipe.hp \
d9c51aa08edc Remved uppercase .hp files
boisy
parents: 177
diff changeset
20 ssc.hp t1.hp t2.hp t3.hp term32.hp term80.hp config.hp
177
90b0403b7e82 Added help files
boisy
parents: 107
diff changeset
21
198
90fc6b3fdbdd Fixed Makefile
boisy
parents: 181
diff changeset
22 KERNEL_1773 = oscode os9 os9p2 init boot_1773
90fc6b3fdbdd Fixed Makefile
boisy
parents: 181
diff changeset
23 KERNEL_ROM = oscode os9 os9p2 init $(TPB)/boot_rom_l1
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
24
198
90fc6b3fdbdd Fixed Makefile
boisy
parents: 181
diff changeset
25 BOOT_TRACKS = kernel_1773 kernel_rom
90fc6b3fdbdd Fixed Makefile
boisy
parents: 181
diff changeset
26 ALLOBJS = $(BOOTERS) $(KERNELS) $(SYSMODS) $(CLOCKS) $(FMGRS) \
90fc6b3fdbdd Fixed Makefile
boisy
parents: 181
diff changeset
27 $(DRIVERS) $(IOSUBS) $(DESCS) $(SYSGOS) $(BOOT_TRACKS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28
177
90b0403b7e82 Added help files
boisy
parents: 107
diff changeset
29 all: $(ALLOBJS) $(HELP)
90b0403b7e82 Added help files
boisy
parents: 107
diff changeset
30 $(UNIX2OS9) $(HELP)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
31
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
32 # Kernel track for OS-9 in ROM on a CoCo
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
33 kernel_rom: $(KERNEL_ROM) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34 $(MERGE) $(KERNEL_ROM)>$@
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
35 $(PADROM) \$$1200 $@ -c=\$$E5
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
36
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
37 # Kernel track for Tandy/RS controller (WD1773)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
38 kernel_1773: $(KERNEL_1773) $(DEPENDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
39 $(MERGE) $(KERNEL_1773)>$@
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
40 $(PADROM) \$$1200 $@ -c=\$$E5
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
41
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
42 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
43 $(RM) $(ALLOBJS)
177
90b0403b7e82 Added help files
boisy
parents: 107
diff changeset
44 $(OS92UNIX) $(HELP)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
45
95
cab6c9f16913 Added identify target
boisy
parents: 50
diff changeset
46 identify:
cab6c9f16913 Added identify target
boisy
parents: 50
diff changeset
47 $(IDENT_SHORT) $(ALLOBJS)
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 95
diff changeset
48
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 95
diff changeset
49 showobjs:
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 95
diff changeset
50 @echo $(ALLOBJS)