annotate level1/coco/makefile @ 2183:d29be35a48bb

makefiles updated, opcode for printing updated
author boisy
date Sun, 08 Mar 2009 22:28:45 +0000
parents 660cc987e18d
children eab970e382e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2039
fd6a34af179a more changes
boisy
parents: 2034
diff changeset
1 PORT = coco
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
3
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
4 CPU = 6809
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
5 LEVEL = 1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
6
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
7 # Level 1 - Specify which shell should be used
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
8 #WHICHSHELL = shellplus
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
9 WHICHSHELL = shell_21
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
10
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
11 DISTRO = $(CPU)L$(LEVEL)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
12 DISTRONAME = nos9$(CPU)l$(LEVEL)
2039
fd6a34af179a more changes
boisy
parents: 2034
diff changeset
13 DISTROVER = $(DISTRONAME)$(NITROS9VER)$(PORT)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
14 BOOTFILE_COVDG = bootfiles/bootfile_covdg
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
15 BOOTFILE_COHR = bootfiles/bootfile_cohr
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
16 BOOTFILE_COVDG_DS80 = bootfiles/bootfile_covdg_ds80
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
17 BOOTFILE_COVDG_DW3_COCO1 = bootfiles/bootfile_covdg_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
18 BOOTFILE_COVDG_DW3_COCO2 = bootfiles/bootfile_covdg_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
19 BOOTFILE_COHR_DS80 = bootfiles/bootfile_cohr_ds80
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
20 BOOTFILE_COHR_DW3_COCO1 = bootfiles/bootfile_cohr_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
21 BOOTFILE_COHR_DW3_COCO2 = bootfiles/bootfile_cohr_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
22 KERNELFILE = bootfiles/kernel_1773
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
23 KERNELFILE_DW3_COCO1 = bootfiles/kernel_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
24 KERNELFILE_DW3_COCO2 = bootfiles/kernel_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
25 DIRS = cmds modules defs sys bootfiles
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
26
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
27
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
28 CMDS = $(shell $(CD) cmds; make showobjs)
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
29 CMDS_D2 = $(shell $(CD) cmds; make showobjs_d2)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
30 BOOTTRACK = $(shell $(CD) modules; make showboottrack)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
31 KERNEL = $(shell $(CD) modules; make showkernel)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
32 SYSMODS = $(shell $(CD) modules; make showsysmods)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
33 CLOCKS = $(shell $(CD) modules; make showclocks)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
34 RBF = $(shell $(CD) modules; make showrbf)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
35 SCF = $(shell $(CD) modules; make showscf)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
36 PIPE = $(shell $(CD) modules; make showpipe)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
37 MODULECMDS = $(WHICHSHELL) del echo format makdir merge os9gen prompt tmode
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
38
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
39 SYS = $(shell $(CD) sys; make showobjs)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
40 DEFS = $(shell $(CD) defs; make showobjs)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
41 ROOTFILES = startup
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
42
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
43 PACKAGENAME = $(DISTROVER).zip
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
44 DSKDW3COCO1 = $(DISTROVER)1_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
45 LDSKDW3COCO1 = $(DISTRONAME)coco1_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
46 DSKDW3COCO2 = $(DISTROVER)2_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
47 LDSKDW3COCO2 = $(DISTRONAME)coco2_dw3.dsk
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
48 DSK360K_1 = $(DISTROVER)_40d_1.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
49 LDSK360K_1 = $(DISTRONAME)_40d_1.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
50 DSK360K_2 = $(DISTROVER)_40d_2.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
51 LDSK360K_2 = $(DISTRONAME)_40d_2.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
52 DSK720K = $(DISTROVER)_80d.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
53 LDSK720K = $(DISTRONAME)_80d.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
54
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
55
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
56 # Make all components
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
57 all:
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
58 @$(ECHO) "**************************************************"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
59 @$(ECHO) "* *"
2041
392de115605e Fixed banner
boisy
parents: 2039
diff changeset
60 @$(ECHO) "* NitrOS-9/6809 Level 1 CoCo Port *"
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
61 @$(ECHO) "* *"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
62 @$(ECHO) "**************************************************"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
63 $(foreach dir, $(DIRS), ($(CD) $(dir); make);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
64
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
65 # Clean all components
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
66 clean: dskclean
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
67 $(foreach dir, $(DIRS), ($(CD) $(dir); make clean);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
68
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
69 dskclean:
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
70 -$(RM) $(PACKAGENAME) $(DSKDW3COCO1) $(DSKDW3COCO2) \
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
71 $(LDSKDW3COCO1) $(LDSKDW3COCO2) \
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
72 $(DSK360K_1) $(LDSK360K_1) \
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
73 $(DSK360K_2) $(LDSK360K_2) $(DSK720K) $(LDSK720K)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
74
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
75
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
76 dsk: all $(PACKAGENAME)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
77
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
78 dskcopy: dsk
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
79 $(CP) $(DSKDW3COCO1) $(DSKDW3COCO2) $(DSK360K_1) $(DSK360K_2) $(DSK720K) $(PACKAGENAME) $(DSKDIR)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
80
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
81 scp: dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
82 scp $(PACKAGENAME) boisy@cvs.nitros9.org:/home/nitros9/public_html
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
83
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
84 $(PACKAGENAME): $(DSKDW3COCO1) $(DSKDW3COCO2) $(DSK360K_1) $(DSK360K_2) $(DSK720K) ../../ReadMe ../../ChangeLog
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
85 $(ARCHIVE) $@ $^
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
86
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
87 $(DSKDW3COCO1):
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
88 $(RM) $@
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
89 $(OS9FORMAT_DW3) -q $@ -n"NitrOS-9/6809 Level 1"
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
90 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG_DW3_COCO1) -t=$(KERNELFILE_DW3_COCO1)
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
91 $(MAKDIR) $@,CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
92 $(MAKDIR) $@,SYS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
93 $(MAKDIR) $@,DEFS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
94 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
95 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
96 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
97 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
98 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
99 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
100 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
101 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
102 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
103 $(CPL) $(ROOTFILES) $@,.
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
104 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
105 $(MAKDIR) $@,NITROS9
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
106 $(MAKDIR) $@,NITROS9/6809L1
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
107 $(MAKDIR) $@,NITROS9/6809L1/CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
108 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
109 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
110 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
111 $(MAKDIR) $@,NITROS9/6809L1/MODULES
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
112 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
113 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
114 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
115 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
116 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
117 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
118 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
119 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
120 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
121 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
122 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
123 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
124 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
125 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
126 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
127 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
128 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
129 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
130 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
131 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
132 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
133 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
134 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
135 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
136 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
137 $(RM) $(LDSKDW3COCO1)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
138 $(SOFTLINK) $@ $(LDSKDW3COCO1)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
139
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
140 $(DSKDW3COCO2):
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
141 $(RM) $@
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
142 $(OS9FORMAT_DW3) -q $@ -n"NitrOS-9/6809 Level 1"
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
143 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG_DW3_COCO2) -t=$(KERNELFILE_DW3_COCO2)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
144 $(MAKDIR) $@,CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
145 $(MAKDIR) $@,SYS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
146 $(MAKDIR) $@,DEFS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
147 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
148 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
149 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
150 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
151 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
152 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
153 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
154 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
155 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
156 $(CPL) $(ROOTFILES) $@,.
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
157 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
158 $(MAKDIR) $@,NITROS9
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
159 $(MAKDIR) $@,NITROS9/6809L1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
160 $(MAKDIR) $@,NITROS9/6809L1/CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
161 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
162 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
163 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
164 $(MAKDIR) $@,NITROS9/6809L1/MODULES
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
165 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
166 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
167 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
168 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
169 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
170 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
171 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
172 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
173 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
174 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
175 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
176 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
177 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
178 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
179 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
180 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
181 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
182 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
183 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
184 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
185 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
186 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
187 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
188 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
189 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
190 $(RM) $(LDSKDW3COCO2)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
191 $(SOFTLINK) $@ $(LDSKDW3COCO2)
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
192
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
193 $(DSK360K_1):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
194 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
195 $(OS9FORMAT_DS40) -q $@ -n"NitrOS-9/6809 Level 1 Disk 1"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
196 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG) -t=$(KERNELFILE)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
197 $(MAKDIR) $@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
198 $(MAKDIR) $@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
199 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
200 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
201 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
202 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
203 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
204 $(MAKDIR) $@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
205 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
206 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
207 $(CPL) $(ROOTFILES) $@,.
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
208 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
209 $(RM) $(LDSK360K_1)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
210 $(SOFTLINK) $@ $(LDSK360K_1)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
211
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
212 $(DSK360K_2):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
213 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
214 $(OS9FORMAT_DS40) -q $@ -n"NitrOS-9/6809 Level 1 Disk 2"
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
215 $(MAKDIR) $@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
216 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
217 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
218 $(MAKDIR) $@,NITROS9
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
219 $(MAKDIR) $@,NITROS9/6809L1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
220 $(MAKDIR) $@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
221 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
222 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
223 $(OS9RENAME) $@,NITROS9/6809L1/CMDS//$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
224 $(MAKDIR) $@,NITROS9/6809L1/MODULES
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
225 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
226 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
227 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
228 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
229 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
230 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
231 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
232 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
233 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
234 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
235 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
236 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
237 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
238 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
239 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
240 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
241 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
242 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
243 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
244 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
245 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
246 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
247 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
248 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
249 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
250 $(RM) $(LDSK360K_2)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
251 $(SOFTLINK) $@ $(LDSK360K_2)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
252
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
253 $(DSK720K):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
254 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
255 $(OS9FORMAT_DS80) -q $@ -n"NitrOS-9/6809 Level 1"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
256 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG_DS80) -t=$(KERNELFILE)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
257 $(MAKDIR) $@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
258 $(MAKDIR) $@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
259 $(MAKDIR) $@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
260 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
261 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
262 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
263 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
264 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
265 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
266 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
267 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
268 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
269 $(CPL) $(ROOTFILES) $@,.
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
270 $(foreach file, $(ROOTFILES), $(OS9ATTR_TEXT) $@,$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
271 $(MAKDIR) $@,NITROS9
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
272 $(MAKDIR) $@,NITROS9/6809L1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
273 $(MAKDIR) $@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
274 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
275 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
276 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
277 $(MAKDIR) $@,NITROS9/6809L1/MODULES
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
278 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
279 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
280 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
281 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
282 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
283 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
284 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
285 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
286 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
287 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
288 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
289 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
290 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
291 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
292 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
293 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
294 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
295 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
296 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
297 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
298 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
299 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
300 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
301 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
302 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
303 $(RM) $(LDSK720K)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
304 $(SOFTLINK) $@ $(LDSK720K)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
305
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
306