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