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