annotate level1/makefile.dalpha @ 1844:601979dd86e0

Added correct step rate for Alpha drives
author afra
date Tue, 21 Jun 2005 00:23:41 +0000
parents 8c92d803f168
children 3562904cb037
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
1 #
1837
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
2 #6809l1/makefile.dalpha
1824
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 #
1837
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
8 # 2005-05-31, P.Harvey-Smith.
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
9 # Added options to specify the step rate of the created
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
10 # floppy devices.
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
11 #
1844
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
12 # 2005-06-20, P.Harvey-Smith.
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
13 # Set default step rate to match that of the Alpha version of OS-9
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
14 # as I know the Alpha drives can cope with this.
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
15
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
16
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
17 include ../rules.mak
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
18
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
19 CPU = 6809
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
20 LEVEL = 1
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
21
1736
fd288a57f6ab CO51 additions by Phill
boisy
parents: 1734
diff changeset
22 # TERMWIDTH can be either 32 or 51
fd288a57f6ab CO51 additions by Phill
boisy
parents: 1734
diff changeset
23 TERMWIDTH = 51
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
24 BOOTFILE = bootfiles/bootfile_dalpha_SS80_$(TERMWIDTH)
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
25 BOOTFILE_DS80 = bootfiles/bootfile_dalpha_DS80_$(TERMWIDTH)
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
26 KERNELFILE = bootfiles/kernel_dalpha
1802
124703b3d9ef Makefile udpates by Phill
boisy
parents: 1736
diff changeset
27 DIRS = cmds modules sys bootfiles
124703b3d9ef Makefile udpates by Phill
boisy
parents: 1736
diff changeset
28 DDIRS = modules bootfiles defs
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
29
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
30 DISTRO = nos9$(CPU)l$(LEVEL)
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
31 DISTROVER = $(DISTRO)$(NITROS9VER)_dalpha
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
32
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
33 # Specify which shell should be used
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
34 #WHICHSHELL = shellplus
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
35 WHICHSHELL = shell_21
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
36
1837
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
37 #Default step rate for floppy drives
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
38 #Step can be one of : 0=30ms, 1=20ms, 2=12ms, 3=6ms
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
39 #Note old drives often require 30ms
1844
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
40 #Alpha OS-9 has this set to 12ms, so we use that setting
601979dd86e0 Added correct step rate for Alpha drives
afra
parents: 1837
diff changeset
41 STEP = 2
1837
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
42
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
43 CMDS = $(shell $(CD) cmds; make showcocoobjs)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
44 BOOTTRACK = $(shell $(CD) modules; make -f makefile.dragon showboottrack)
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
45 KERNEL = $(shell $(CD) modules; make -f makefile.dragon showkernel)
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
46 SYSMODS = $(shell $(CD) modules; make -f makefile.dragon showsysmods)
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
47 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
48 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
49 SCF = $(shell $(CD) modules; make -f makefile.dragon showscf)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
50 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
51 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
52
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
53 SYS = $(shell $(CD) sys; make showobjs)
1802
124703b3d9ef Makefile udpates by Phill
boisy
parents: 1736
diff changeset
54 DEFS = $(shell $(CD) defs; make -f makefile.dragon showobjs)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
55 ROOTFILES =
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
56 STARTUP = startup.dalpha
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
57
1824
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
58 PACKAGENAME = $(DISTROVER).zip
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
59 DSK360K_1 = $(DISTROVER)_80s_1.dsk
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
60 LDSK360K_1 = $(DISTRO)_80s_1.dsk
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
61 DSK360K_2 = $(DISTROVER)_80s_2.dsk
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
62 LDSK360K_2 = $(DISTRO)_80s_2.dsk
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
63 DSK720K = $(DISTROVER)_80d.dsk
90a008bdcc8e Added correct bootfiles, brought realease version vars into line with CoCo
afra
parents: 1802
diff changeset
64 LDSK720K = $(DISTRO)_80d.dsk
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
65
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
66 # Make all components
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
67 all:
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
68 @$(ECHO) "**************************************************"
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
69 @$(ECHO) "* *"
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
70 @$(ECHO) "* NitrOS-9/6809 Level 1 Distribution *"
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
71 @$(ECHO) "* *"
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
72 @$(ECHO) "**************************************************"
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
73 $(foreach dir, $(DIRS), ($(CD) $(dir); make);)
1837
8c92d803f168 Added ability to specify disk step rate
afra
parents: 1824
diff changeset
74 $(foreach dir, $(DDIRS), ($(CD) $(dir); make -f makefile.dragon STEP=$(STEP));)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
75
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
76 # Clean all components
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
77 clean: dskclean
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
78 $(foreach dir, $(DIRS), ($(CD) $(dir); make clean);)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
79 $(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
80
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
81 dskclean:
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
82 -$(RM) $(PACKAGENAME) $(DSK360K_1) $(DSK360K_2) $(DSK720K)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
83
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
84 dsk: all $(PACKAGENAME)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
85
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
86 dskcopy: dsk
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
87 $(CP) $(DSK360K_1) $(DSK360K_2) $(DSK720K) $(PACKAGENAME) $(DSKDIR)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
88
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
89 scp: dsk
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
90 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
91
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
92 $(PACKAGENAME): $(DSK360K_1) $(DSK360K_2) $(DSK720K) ReadMe ChangeLog
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
93 $(ARCHIVE) $@ $^
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
94
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
95 #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
96
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
97 $(DSK360K_1):
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
98 $(RM) $@
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
99 $(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
100 $(OS9GEN) $@ -d -b=$(BOOTFILE) -t=$(KERNELFILE)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
101 $(MAKDIR) $@,CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
102 $(MAKDIR) $@,SYS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
103 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
104 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
105 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
106 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
107 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
108 $(MAKDIR) $@,DEFS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
109 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
110 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
111 $(CPL) $(ROOTFILES) $@,.
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
112 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
113 $(CPL) $(STARTUP) $@,startup
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
114 $(OS9ATTR_TEXT) $@,startup
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
115
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
116 $(DSK360K_2):
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
117 $(RM) $@
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
118 $(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
119 $(MAKDIR) $@,NITROS9
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
120 $(MAKDIR) $@,NITROS9/6809L1
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
121 $(MAKDIR) $@,NITROS9/6809L1/CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
122 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
123 $(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
124 $(OS9RENAME) $@,NITROS9/6809L1/CMDS//$(WHICHSHELL) shell
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
125 $(MAKDIR) $@,NITROS9/6809L1/MODULES
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
126 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
127 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
128 $(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
129 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
130 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
131 $(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
132 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
133 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
134 $(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
135 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
136 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
137 $(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
138 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
139 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
140 $(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
141 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
142 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
143 $(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
144 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
145 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
146 $(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
147 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
148 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
149 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
150 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
151
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
152 $(DSK720K):
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
153 $(RM) $@
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
154 $(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
155 $(OS9GEN) $@ -d -b=$(BOOTFILE_DS80) -t=$(KERNELFILE)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
156 $(MAKDIR) $@,CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
157 $(MAKDIR) $@,SYS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
158 $(MAKDIR) $@,DEFS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
159 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
160 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
161 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
162 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
163 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
164 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
165 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
166 $(CPL) $(ROOTFILES) $@,.
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
167 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
1730
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
168 $(CPL) $(STARTUP) $@,startup
a28e465269b9 Files from Phill
boisy
parents: 1727
diff changeset
169 $(OS9ATTR_TEXT) $@,startup
1727
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
170 $(MAKDIR) $@,NITROS9
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
171 $(MAKDIR) $@,NITROS9/6809L1
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
172 $(MAKDIR) $@,NITROS9/6809L1/CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
173 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
174 $(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
175 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
176 $(MAKDIR) $@,NITROS9/6809L1/MODULES
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
177 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
178 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
179 $(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
180 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
181 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
182 $(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
183 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
184 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
185 $(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
186 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
187 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
188 $(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
189 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
190 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
191 $(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
192 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
193 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
194 $(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
195 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
196 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
197 $(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
198 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
199 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
200 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
201 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
202
78ce0a5ffc8e Incorporated changes and additions made by Phill Harvey-Smith for the
boisy
parents:
diff changeset
203