Mercurial > hg > Members > kono > nitros9-code
annotate level1/makefile.dalpha @ 1830:d1f2f21d6af7
Added Robert Gault's 'F' option mod to backup for DSK images
author | boisy |
---|---|
date | Thu, 05 May 2005 12:43:28 +0000 |
parents | 90a008bdcc8e |
children | 8c92d803f168 |
rev | line source |
---|---|
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
1 # |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
2 #6809l1/makefile.dragon |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
3 # |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
4 # 2005-04-24, P.Harvey-Smith. |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
5 # Brought into line with CoCo makefile, for generating disk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
6 # names baded on CPU/Level/Release number. |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
7 # |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
8 |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
9 include ../rules.mak |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
10 |
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
11 CPU = 6809 |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
12 LEVEL = 1 |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
13 |
1736 | 14 # TERMWIDTH can be either 32 or 51 |
15 TERMWIDTH = 51 | |
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
16 BOOTFILE = bootfiles/bootfile_dalpha_SS80_$(TERMWIDTH) |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
17 BOOTFILE_DS80 = bootfiles/bootfile_dalpha_DS80_$(TERMWIDTH) |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
18 KERNELFILE = bootfiles/kernel_dalpha |
1802 | 19 DIRS = cmds modules sys bootfiles |
20 DDIRS = modules bootfiles defs | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
21 |
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
22 DISTRO = nos9$(CPU)l$(LEVEL) |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
23 DISTROVER = $(DISTRO)$(NITROS9VER)_dalpha |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
24 |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
25 # Specify which shell should be used |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
26 #WHICHSHELL = shellplus |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
27 WHICHSHELL = shell_21 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
28 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
29 CMDS = $(shell $(CD) cmds; make showcocoobjs) |
1730 | 30 BOOTTRACK = $(shell $(CD) modules; make -f makefile.dragon showboottrack) |
31 KERNEL = $(shell $(CD) modules; make -f makefile.dragon showkernel) | |
32 SYSMODS = $(shell $(CD) modules; make -f makefile.dragon showsysmods) | |
33 CLOCKS = $(shell $(CD) modules; make -f makefile.dragon showclocks) | |
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
34 RBF = $(shell $(CD) modules; make -f makefile.dragon showrbf) |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
35 SCF = $(shell $(CD) modules; make -f makefile.dragon showscf) |
1730 | 36 PIPE = $(shell $(CD) modules; make -f makefile.dragon showpipe) |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
37 MODULECMDS = $(WHICHSHELL) del echo format makdir merge os9gen prompt tmode |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
38 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
39 SYS = $(shell $(CD) sys; make showobjs) |
1802 | 40 DEFS = $(shell $(CD) defs; make -f makefile.dragon showobjs) |
1730 | 41 ROOTFILES = |
42 STARTUP = startup.dalpha | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
43 |
1824
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
44 PACKAGENAME = $(DISTROVER).zip |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
45 DSK360K_1 = $(DISTROVER)_80s_1.dsk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
46 LDSK360K_1 = $(DISTRO)_80s_1.dsk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
47 DSK360K_2 = $(DISTROVER)_80s_2.dsk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
48 LDSK360K_2 = $(DISTRO)_80s_2.dsk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
49 DSK720K = $(DISTROVER)_80d.dsk |
90a008bdcc8e
Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents:
1802
diff
changeset
|
50 LDSK720K = $(DISTRO)_80d.dsk |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
51 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
52 # Make all components |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
53 all: |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
54 @$(ECHO) "**************************************************" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
55 @$(ECHO) "* *" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
56 @$(ECHO) "* NitrOS-9/6809 Level 1 Distribution *" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
57 @$(ECHO) "* *" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
58 @$(ECHO) "**************************************************" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
59 $(foreach dir, $(DIRS), ($(CD) $(dir); make);) |
1730 | 60 $(foreach dir, $(DDIRS), ($(CD) $(dir); make -f makefile.dragon);) |
61 | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
62 # Clean all components |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
63 clean: dskclean |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
64 $(foreach dir, $(DIRS), ($(CD) $(dir); make clean);) |
1730 | 65 $(foreach dir, $(DDIRS), ($(CD) $(dir); make -f makefile.dragon clean);) |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
66 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
67 dskclean: |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
68 -$(RM) $(PACKAGENAME) $(DSK360K_1) $(DSK360K_2) $(DSK720K) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
69 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
70 dsk: all $(PACKAGENAME) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
71 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
72 dskcopy: dsk |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
73 $(CP) $(DSK360K_1) $(DSK360K_2) $(DSK720K) $(PACKAGENAME) $(DSKDIR) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
74 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
75 scp: dsk |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
76 scp $(PACKAGENAME) boisy@cvs.nitros9.org:/home/nitros9/public_html |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
77 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
78 $(PACKAGENAME): $(DSK360K_1) $(DSK360K_2) $(DSK720K) ReadMe ChangeLog |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
79 $(ARCHIVE) $@ $^ |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
80 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
81 #Dragon Alpha internal drives are Single sided 80 track |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
82 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
83 $(DSK360K_1): |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
84 $(RM) $@ |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
85 $(OS9FORMAT_SS80) -e -dr -q $@ -n"NitrOS-9/6809 Level 1 Disk 1" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
86 $(OS9GEN) $@ -d -b=$(BOOTFILE) -t=$(KERNELFILE) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
87 $(MAKDIR) $@,CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
88 $(MAKDIR) $@,SYS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
89 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
90 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
91 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
92 $(CD) sys; $(CPL) $(SYS) ../$@,SYS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
93 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
94 $(MAKDIR) $@,DEFS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
95 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
96 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
97 $(CPL) $(ROOTFILES) $@,. |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
98 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);) |
1730 | 99 $(CPL) $(STARTUP) $@,startup |
100 $(OS9ATTR_TEXT) $@,startup | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
101 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
102 $(DSK360K_2): |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
103 $(RM) $@ |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
104 $(OS9FORMAT_SS40) -e -dr -q $@ -n"NitrOS-9/6809 Level 1 Disk 2" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
105 $(MAKDIR) $@,NITROS9 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
106 $(MAKDIR) $@,NITROS9/6809L1 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
107 $(MAKDIR) $@,NITROS9/6809L1/CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
108 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
109 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
110 $(OS9RENAME) $@,NITROS9/6809L1/CMDS//$(WHICHSHELL) shell |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
111 $(MAKDIR) $@,NITROS9/6809L1/MODULES |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
112 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
113 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
114 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
115 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
116 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
117 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
118 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
119 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
120 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
121 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
122 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
123 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
124 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
125 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
126 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
127 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
128 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
129 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
130 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
131 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
132 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
133 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
134 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
135 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
136 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
137 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
138 $(DSK720K): |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
139 $(RM) $@ |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
140 $(OS9FORMAT_DS80) -e -dr -c2 -q $@ -n"NitrOS-9/6809 Level 1" |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
141 $(OS9GEN) $@ -d -b=$(BOOTFILE_DS80) -t=$(KERNELFILE) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
142 $(MAKDIR) $@,CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
143 $(MAKDIR) $@,SYS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
144 $(MAKDIR) $@,DEFS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
145 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
146 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
147 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
148 $(CD) sys; $(CPL) $(SYS) ../$@,SYS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
149 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
150 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
151 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
152 $(CPL) $(ROOTFILES) $@,. |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
153 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);) |
1730 | 154 $(CPL) $(STARTUP) $@,startup |
155 $(OS9ATTR_TEXT) $@,startup | |
1727
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
156 $(MAKDIR) $@,NITROS9 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
157 $(MAKDIR) $@,NITROS9/6809L1 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
158 $(MAKDIR) $@,NITROS9/6809L1/CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
159 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
160 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
161 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
162 $(MAKDIR) $@,NITROS9/6809L1/MODULES |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
163 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
164 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
165 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
166 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
167 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
168 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
169 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
170 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
171 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
172 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
173 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
174 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
175 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
176 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
177 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
178 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
179 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
180 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
181 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
182 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
183 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);) |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
184 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
185 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
186 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
187 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
188 |
78ce0a5ffc8e
Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff
changeset
|
189 |