Mercurial > hg > Members > kono > nitros9-code
annotate level2/makefile @ 755:aca4b54ed8f3
Updated to beta3
author | boisy |
---|---|
date | Wed, 08 Jan 2003 22:41:19 +0000 |
parents | 6ec99f9702bc |
children | 521cb0d31bef |
rev | line source |
---|---|
0 | 1 include ../Makefile.rules |
2 | |
755 | 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 | 6 |
7 CMDS = $(shell $(CD) CMDS; make showobjs) | |
8 MODULES = $(shell $(CD) MODULES; make showcopyobjs) | |
9 DEFS = $(shell $(CD) DEFS; make showobjs) | |
10 SYS = $(shell $(CD) SYS; make showobjs) | |
355 | 11 ROOTFILES = startup upgrade_song |
455 | 12 SYSGO = MODULES/cc3go |
13 | |
14 PACKAGENAME = $(RELEASE).zip | |
715
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
15 DSK_SS40_1 = $(RELEASE)_ss40_1.dsk |
519
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
16 DSK_DS40_1 = $(RELEASE)_ds40_1.dsk |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
17 DSK_DS40_2 = $(RELEASE)_ds40_2.dsk |
558 | 18 TESTDSK = test.dsk |
455 | 19 |
341 | 20 |
0 | 21 # Make all components |
22 all: | |
23 @$(ECHO) "*********************************************" | |
24 @$(ECHO) "* *" | |
25 @$(ECHO) "* OS-9 Level Two Vr3 Distribution *" | |
26 @$(ECHO) "* The Rumored Upgrade Version *" | |
27 @$(ECHO) "* *" | |
28 @$(ECHO) "*********************************************" | |
329 | 29 $(CD) CMDS; make |
30 $(CD) MODULES; make | |
31 $(CD) DEFS; make | |
337 | 32 $(CD) SYS; make |
329 | 33 $(CD) BOOTFILES; make |
341 | 34 $(UNIX2OS9) $(ROOTFILES) |
35 $(CHMOD) 644 $(ROOTFILES) | |
0 | 36 |
37 # Clean all components | |
455 | 38 clean: dskclean |
329 | 39 -$(CD) CMDS; make clean |
40 -$(CD) MODULES; make clean | |
41 -$(CD) DEFS; make clean | |
337 | 42 -$(CD) SYS; make clean |
329 | 43 -$(CD) BOOTFILES; make clean |
341 | 44 -$(OS92UNIX) $(ROOTFILES) |
455 | 45 |
46 dskclean: | |
739 | 47 -$(RM) $(PACKAGENAME) $(DSK_SS40_1) $(DSK_DS40_1) $(DSK_DS40_2) |
455 | 48 |
49 dsk: all $(PACKAGENAME) | |
50 | |
739 | 51 $(PACKAGENAME): $(DSK_SS40_1) $(DSK_DS40_1) $(DSK_DS40_2) |
52 $(ZIP) $(PACKAGENAME) $(DSK_SS40_1) $(DSK_DS40_1) $(DSK_DS40_2) ReleaseNotes ChangeLog | |
715
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
53 |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
54 $(DSK_SS40_1): |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
55 -$(RM) $(DSK_SS40_1) |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
56 $(OS9FORMAT) $(DSK_SS40_1) -t40 -h1 -n"OS-9 Level Two System Disk" |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
57 $(OS9GEN) $(DSK_SS40_1) BOOTFILES/$(BOOTFILE) BOOTFILES/$(KERNEL) |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
58 $(MAKDIR) $(DSK_SS40_1),CMDS |
751
6ec99f9702bc
init no longer references cc3go from CMDS. This way, cc3go can
boisy
parents:
739
diff
changeset
|
59 $(CP) $(SYSGO) $(DSK_SS40_1), |
715
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
60 $(CD) CMDS; $(CP) $(CMDS) ../$(DSK_SS40_1),CMDS |
59a079eb1b0b
Changed bootfile_stock reference to updated bootfiles
boisy
parents:
558
diff
changeset
|
61 $(CP) $(ROOTFILES) $(DSK_SS40_1),. |
455 | 62 |
519
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
63 $(DSK_DS40_1): |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
64 -$(RM) $(DSK_DS40_1) |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
65 $(OS9FORMAT) $(DSK_DS40_1) -t40 -h2 -n"OS-9 Level Two System Disk" |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
66 $(OS9GEN) $(DSK_DS40_1) BOOTFILES/$(BOOTFILE) BOOTFILES/$(KERNEL) |
558 | 67 $(MAKDIR) $(DSK_DS40_1),CMDS |
68 $(MAKDIR) $(DSK_DS40_1),SYS | |
69 $(MAKDIR) $(DSK_DS40_1),MODULES | |
751
6ec99f9702bc
init no longer references cc3go from CMDS. This way, cc3go can
boisy
parents:
739
diff
changeset
|
70 $(CP) $(SYSGO) $(DSK_DS40_1), |
558 | 71 $(CD) CMDS; $(CP) $(CMDS) ../$(DSK_DS40_1),CMDS |
72 $(CD) SYS; $(CP) $(SYS) ../$(DSK_DS40_1),SYS | |
73 $(CD) MODULES; $(CP) $(MODULES) ../$(DSK_DS40_1),MODULES | |
74 $(CP) $(ROOTFILES) $(DSK_DS40_1),. | |
455 | 75 |
519
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
76 $(DSK_DS40_2): |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
77 -$(RM) $(DSK_DS40_2) |
6c626a142234
Eliminated SS disks... distribution is too large, now we only have
boisy
parents:
485
diff
changeset
|
78 $(OS9FORMAT) $(DSK_DS40_2) -t40 -h2 -n"OS-9 Level Two Development Disk" |
558 | 79 $(MAKDIR) $(DSK_DS40_2),DEFS |
80 $(CD) DEFS; $(CP) $(DEFS) ../$(DSK_DS40_2),DEFS |