annotate level2/makefile @ 966:5747fa790c2e

Forgot pmap
author boisy
date Fri, 31 Jan 2003 17:54:23 +0000
parents ea69ed12af12
children 72ceb9308d20
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
755
aca4b54ed8f3 Updated to beta3
boisy
parents: 751
diff changeset
3 RELEASE = os9l2v030002beta3
751
6ec99f9702bc init no longer references cc3go from CMDS. This way, cc3go can
boisy
parents: 739
diff changeset
4 BOOTFILE = bootfile_vdg
519
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
5 KERNEL = kernel_stock
455
boisy
parents: 355
diff changeset
6
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
7 CMDS = $(shell $(CD) CMDS; make showobjs)
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
8 MODULES = $(shell $(CD) MODULES; make showcopyobjs)
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
9 DEFS = $(shell $(CD) DEFS; make showobjs)
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
10 SYSBIN = $(shell $(CD) SYS; make showbinobjs)
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
11 SYSTEXT = $(shell $(CD) SYS; make showtextobjs)
355
71b60814fb01 Makefiles modified for uniformity
boisy
parents: 341
diff changeset
12 ROOTFILES = startup upgrade_song
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
13 SYSGO = MODULES/cc3go
455
boisy
parents: 355
diff changeset
14
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
15 PACKAGENAME = $(RELEASE).zip
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
16 DSK_DS40_1 = $(RELEASE)_ds40_1.dsk
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
17 DSK_DS40_2 = $(RELEASE)_ds40_2.dsk
558
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
18 TESTDSK = test.dsk
455
boisy
parents: 355
diff changeset
19
341
20944721d3e6 Major makefile mods
boisy
parents: 337
diff changeset
20
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
21 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
22 all:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
23 @$(ECHO) "*********************************************"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
24 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25 @$(ECHO) "* OS-9 Level Two Vr3 Distribution *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
26 @$(ECHO) "* The Rumored Upgrade Version *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
27 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28 @$(ECHO) "*********************************************"
329
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
29 $(CD) CMDS; make
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
30 $(CD) MODULES; make
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
31 $(CD) DEFS; make
337
17ba481eb565 Added SYS as a target
boisy
parents: 329
diff changeset
32 $(CD) SYS; make
329
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
33 $(CD) BOOTFILES; make
341
20944721d3e6 Major makefile mods
boisy
parents: 337
diff changeset
34 $(CHMOD) 644 $(ROOTFILES)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
35
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
36 # Clean all components
455
boisy
parents: 355
diff changeset
37 clean: dskclean
329
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
38 -$(CD) CMDS; make clean
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
39 -$(CD) MODULES; make clean
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
40 -$(CD) DEFS; make clean
337
17ba481eb565 Added SYS as a target
boisy
parents: 329
diff changeset
41 -$(CD) SYS; make clean
329
65a11be4f1e7 Made better
boisy
parents: 0
diff changeset
42 -$(CD) BOOTFILES; make clean
455
boisy
parents: 355
diff changeset
43
boisy
parents: 355
diff changeset
44 dskclean:
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
45 -$(RM) $(PACKAGENAME) $(DSK_DS40_1) $(DSK_DS40_2)
455
boisy
parents: 355
diff changeset
46
boisy
parents: 355
diff changeset
47 dsk: all $(PACKAGENAME)
boisy
parents: 355
diff changeset
48
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
49 $(PACKAGENAME): $(DSK_DS40_1) $(DSK_DS40_2)
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
50 $(ZIP) $(PACKAGENAME) $(DSK_DS40_1) $(DSK_DS40_2) ReadMe ChangeLog
455
boisy
parents: 355
diff changeset
51
519
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
52 $(DSK_DS40_1):
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
53 -$(RM) $(DSK_DS40_1)
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 900
diff changeset
54 $(OS9FORMAT_DS40) $(DSK_DS40_1) -n"OS-9 Level Two System Disk"
519
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
55 $(OS9GEN) $(DSK_DS40_1) BOOTFILES/$(BOOTFILE) BOOTFILES/$(KERNEL)
558
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
56 $(MAKDIR) $(DSK_DS40_1),CMDS
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
57 $(MAKDIR) $(DSK_DS40_1),SYS
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
58 $(MAKDIR) $(DSK_DS40_1),MODULES
751
6ec99f9702bc init no longer references cc3go from CMDS. This way, cc3go can
boisy
parents: 739
diff changeset
59 $(CP) $(SYSGO) $(DSK_DS40_1),
558
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
60 $(CD) CMDS; $(CP) $(CMDS) ../$(DSK_DS40_1),CMDS
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
61 $(CD) SYS; $(CP) $(SYSBIN) ../$(DSK_DS40_1),SYS
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
62 $(CD) SYS; $(CPL) $(SYSTEXT) ../$(DSK_DS40_1),SYS
558
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
63 $(CD) MODULES; $(CP) $(MODULES) ../$(DSK_DS40_1),MODULES
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
64 $(CPL) $(ROOTFILES) $(DSK_DS40_1),.
455
boisy
parents: 355
diff changeset
65
519
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
66 $(DSK_DS40_2):
6c626a142234 Eliminated SS disks... distribution is too large, now we only have
boisy
parents: 485
diff changeset
67 -$(RM) $(DSK_DS40_2)
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 900
diff changeset
68 $(OS9FORMAT_DS40) $(DSK_DS40_2) -n"OS-9 Level Two Development Disk"
558
0ff357df35c5 Modified : to ,
boisy
parents: 520
diff changeset
69 $(MAKDIR) $(DSK_DS40_2),DEFS
900
d7969e08a482 os9copy now does eol translation
boisy
parents: 875
diff changeset
70 $(CD) DEFS; $(CPL) $(DEFS) ../$(DSK_DS40_2),DEFS