annotate level1/coco/makefile @ 2513:70dfe007013e

Now DW has its own startup
author boisy
date Tue, 06 Apr 2010 13:02:46 +0000
parents a98d02878bdd
children 4815688cd50f
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
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
17 BOOTFILE_HEADLESS_DW3_COCO1 = bootfiles/bootfile_headless_dw3_coco1
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
18 BOOTFILE_HEADLESS_DW3_COCO2 = bootfiles/bootfile_headless_dw3_coco2
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
19 BOOTFILE_COVDG_DW3_COCO1 = bootfiles/bootfile_covdg_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
20 BOOTFILE_COVDG_DW3_COCO2 = bootfiles/bootfile_covdg_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
21 BOOTFILE_COHR_DS80 = bootfiles/bootfile_cohr_ds80
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
22 BOOTFILE_COHR_DW3_COCO1 = bootfiles/bootfile_cohr_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
23 BOOTFILE_COHR_DW3_COCO2 = bootfiles/bootfile_cohr_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
24 KERNELFILE = bootfiles/kernel_1773
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
25 KERNELFILE_DW3_COCO1 = bootfiles/kernel_dw3_coco1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
26 KERNELFILE_DW3_COCO2 = bootfiles/kernel_dw3_coco2
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
27 DIRS = cmds modules defs sys bootfiles
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
28
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
29
2346
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
30 CMDS = $(shell $(CD) cmds; make --no-print-directory showobjs)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
31 CMDS_D2 = $(shell $(CD) cmds; make --no-print-directory showobjs_d2)
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
32 CMDS_DW = $(shell $(CD) cmds; make --no-print-directory showobjs_dw)
2346
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
33 BOOTTRACK = $(shell $(CD) modules; make --no-print-directory showboottrack)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
34 KERNEL = $(shell $(CD) modules; make --no-print-directory showkernel)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
35 SYSMODS = $(shell $(CD) modules; make --no-print-directory showsysmods)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
36 CLOCKS = $(shell $(CD) modules; make --no-print-directory showclocks)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
37 RBF = $(shell $(CD) modules; make --no-print-directory showrbf)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
38 SCF = $(shell $(CD) modules; make --no-print-directory showscf)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
39 PIPE = $(shell $(CD) modules; make --no-print-directory showpipe)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
40 MODULECMDS = $(WHICHSHELL) del echo format makdir merge os9gen prompt tmode
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
41
2346
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
42 SYS = $(shell $(CD) sys; make --no-print-directory showobjs)
fb1c0a45f28e Fix for /bin/sh: command substitution: line 0: unexpected EOF
chawks4
parents: 2294
diff changeset
43 DEFS = $(shell $(CD) defs; make --no-print-directory showobjs)
2513
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
44 STARTUP = startup
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
45 STARTUP_DW = startup.dw
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
46
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
47 PACKAGENAME = $(DISTROVER).zip
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
48 DSKDW3COCO1 = $(DISTROVER)1_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
49 LDSKDW3COCO1 = $(DISTRONAME)coco1_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
50 DSKDW3COCO2 = $(DISTROVER)2_dw3.dsk
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
51 LDSKDW3COCO2 = $(DISTRONAME)coco2_dw3.dsk
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
52 DSK360K_1 = $(DISTROVER)_40d_1.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
53 LDSK360K_1 = $(DISTRONAME)_40d_1.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
54 DSK360K_2 = $(DISTROVER)_40d_2.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
55 LDSK360K_2 = $(DISTRONAME)_40d_2.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
56 DSK720K = $(DISTROVER)_80d.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
57 LDSK720K = $(DISTRONAME)_80d.dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
58
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
59
2217
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
60 DSKS = $(DSKDW3COCO1) $(DSKDW3COCO2) $(DSK360K_1) $(DSK360K_2) $(DSK720K)
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
61 LDSKS = $(LDSKDW3COCO1) $(LDSKDW3COCO2) $(LDSK360K_1) $(LDSK360K_2) $(LDSK720K)
2216
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
62
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
63 # Make all components
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
64 all:
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
65 @$(ECHO) "**************************************************"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
66 @$(ECHO) "* *"
2475
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2346
diff changeset
67 @$(ECHO) "* NitrOS-9/$(CPU) Level 1 CoCo Port *"
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
68 @$(ECHO) "* *"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
69 @$(ECHO) "**************************************************"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
70 $(foreach dir, $(DIRS), ($(CD) $(dir); make);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
71
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
72 # Clean all components
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
73 clean: dskclean
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
74 $(foreach dir, $(DIRS), ($(CD) $(dir); make clean);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
75
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
76 dskclean:
2217
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
77 -$(RM) $(PACKAGENAME) $(DSKS) $(LDSKS)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
78
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
79 dsk: all $(PACKAGENAME)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
80
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
81 dskcopy: dsk
2217
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
82 $(CP) $(DSKS) $(DSKDIR)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
83
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
84 scp: dsk
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
85 scp $(PACKAGENAME) boisy@cvs.nitros9.org:/home/nitros9/public_html
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
86
2217
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
87 $(PACKAGENAME): $(DSKS) ../../ReadMe ../../ChangeLog
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
88 $(ARCHIVE) $@ $^
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
89
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
90 $(DSKDW3COCO1):
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
91 $(RM) $@
2475
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2346
diff changeset
92 $(OS9FORMAT_DW3) -q $@ -n"NitrOS-9/$(CPU) Level 1"
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
93 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG_DW3_COCO1) -t=$(KERNELFILE_DW3_COCO1)
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
94 $(MAKDIR) $@,CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
95 $(MAKDIR) $@,SYS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
96 $(MAKDIR) $@,DEFS
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
97 $(CD) cmds; $(CP) $(CMDS_DW) ../$@,CMDS
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
98 $(foreach file, $(CMDS_DW), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
99 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
100 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
101 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
102 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
103 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
104 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
105 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
2513
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
106 $(CPL) $(STARTUP_DW) $@,startup
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
107 $(OS9ATTR_TEXT) $@,startup
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
108 $(MAKDIR) $@,NITROS9
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
109 $(MAKDIR) $@,NITROS9/6809L1
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
110 $(MAKDIR) $@,NITROS9/6809L1/CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
111 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
112 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
113 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
114 $(MAKDIR) $@,NITROS9/6809L1/MODULES
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
115 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
116 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
117 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
118 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
119 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
120 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
121 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
122 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
123 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
124 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
125 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
126 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
127 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
128 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
129 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
130 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
131 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
132 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
133 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
134 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
135 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
136 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
137 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
138 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
139 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
140 $(RM) $(LDSKDW3COCO1)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
141 $(SOFTLINK) $@ $(LDSKDW3COCO1)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
142
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
143 $(DSKDW3COCO2):
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
144 $(RM) $@
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
145 $(OS9FORMAT_DW3) -q $@ -n"NitrOS-9/6809 Level 1"
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
146 $(OS9GEN) $@ -b=$(BOOTFILE_HEADLESS_DW3_COCO2) -t=$(KERNELFILE_DW3_COCO2)
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
147 $(MAKDIR) $@,CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
148 $(MAKDIR) $@,SYS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
149 $(MAKDIR) $@,DEFS
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
150 $(CD) cmds; $(CP) $(CMDS_DW) ../$@,CMDS
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
151 $(foreach file, $(CMDS_DW), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
152 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
153 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
154 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
155 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
156 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
157 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
158 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
2513
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
159 $(CPL) $(STARTUP_DW) $@,startup
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
160 $(OS9ATTR_TEXT) $@,startup
2183
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
161 $(MAKDIR) $@,NITROS9
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
162 $(MAKDIR) $@,NITROS9/6809L1
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
163 $(MAKDIR) $@,NITROS9/6809L1/CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
164 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
165 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
166 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
167 $(MAKDIR) $@,NITROS9/6809L1/MODULES
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
168 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
169 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
170 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
171 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
172 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
173 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
174 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
175 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
176 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
177 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
178 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
179 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
180 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
181 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
182 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
183 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
184 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
185 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
186 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
187 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
188 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
189 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
190 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
191 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
192 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
193 $(RM) $(LDSKDW3COCO2)
d29be35a48bb makefiles updated, opcode for printing updated
boisy
parents: 2180
diff changeset
194 $(SOFTLINK) $@ $(LDSKDW3COCO2)
2180
660cc987e18d Added DriveWire 3 modules to distribution
boisy
parents: 2155
diff changeset
195
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
196 $(DSK360K_1):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
197 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
198 $(OS9FORMAT_DS40) -q $@ -n"NitrOS-9/6809 Level 1 Disk 1"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
199 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG) -t=$(KERNELFILE)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
200 $(MAKDIR) $@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
201 $(MAKDIR) $@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
202 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
203 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
204 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
205 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
206 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
207 $(MAKDIR) $@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
208 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
209 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
2513
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
210 $(CPL) $(STARTUP) $@,startup
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
211 $(OS9ATTR_TEXT) $@,startup
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
212 $(RM) $(LDSK360K_1)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
213 $(SOFTLINK) $@ $(LDSK360K_1)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
214
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
215 $(DSK360K_2):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
216 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
217 $(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
218 $(MAKDIR) $@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
219 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
220 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
221 $(MAKDIR) $@,NITROS9
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
222 $(MAKDIR) $@,NITROS9/6809L1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
223 $(MAKDIR) $@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
224 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
225 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
226 $(OS9RENAME) $@,NITROS9/6809L1/CMDS//$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
227 $(MAKDIR) $@,NITROS9/6809L1/MODULES
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
228 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
229 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
230 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
231 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
232 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
233 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
234 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
235 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
236 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
237 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
238 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
239 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
240 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
241 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
242 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
243 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
244 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
245 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
246 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
247 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
248 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
249 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
250 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
251 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
252 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
253 $(RM) $(LDSK360K_2)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
254 $(SOFTLINK) $@ $(LDSK360K_2)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
255
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
256 $(DSK720K):
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
257 $(RM) $@
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
258 $(OS9FORMAT_DS80) -q $@ -n"NitrOS-9/6809 Level 1"
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
259 $(OS9GEN) $@ -b=$(BOOTFILE_COVDG_DS80) -t=$(KERNELFILE)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
260 $(MAKDIR) $@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
261 $(MAKDIR) $@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
262 $(MAKDIR) $@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
263 $(CD) cmds; $(CP) $(CMDS) ../$@,CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
264 $(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
265 $(CD) cmds; $(CP) $(CMDS_D2) ../$@,CMDS
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2041
diff changeset
266 $(foreach file, $(CMDS_D2), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
267 $(OS9RENAME) $@,CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
268 $(CD) sys; $(CPL) $(SYS) ../$@,SYS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
269 $(foreach file, $(SYS), $(OS9ATTR_TEXT) $@,SYS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
270 $(CD) defs; $(CPL) $(DEFS) ../$@,DEFS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
271 $(foreach file, $(DEFS), $(OS9ATTR_TEXT) $@,DEFS/$(file);)
2513
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
272 $(CPL) $(STARTUP) $@,startup
70dfe007013e Now DW has its own startup
boisy
parents: 2483
diff changeset
273 $(OS9ATTR_TEXT) $@,startup
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
274 $(MAKDIR) $@,NITROS9
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
275 $(MAKDIR) $@,NITROS9/6809L1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
276 $(MAKDIR) $@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
277 $(CD) cmds; $(CP) $(MODULECMDS) ../$@,NITROS9/6809L1/CMDS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
278 $(foreach file, $(MODULECMDS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/CMDS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
279 $(OS9RENAME) $@,NITROS9/6809L1/CMDS/$(WHICHSHELL) shell
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
280 $(MAKDIR) $@,NITROS9/6809L1/MODULES
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
281 $(MAKDIR) $@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
282 $(CD) modules; $(CP) $(BOOTTRACK) ../$@,NITROS9/6809L1/MODULES/BOOTTRACK
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
283 $(foreach file, $(BOOTTRACK), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/BOOTTRACK/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
284 $(MAKDIR) $@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
285 $(CD) modules; $(CP) $(KERNEL) ../$@,NITROS9/6809L1/MODULES/KERNEL
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
286 $(foreach file, $(KERNEL), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/KERNEL/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
287 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
288 $(CD) modules; $(CP) $(SYSMODS) ../$@,NITROS9/6809L1/MODULES/SYSMODS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
289 $(foreach file, $(SYSMODS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SYSMODS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
290 $(MAKDIR) $@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
291 $(CD) modules; $(CP) $(CLOCKS) ../$@,NITROS9/6809L1/MODULES/CLOCKS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
292 $(foreach file, $(CLOCKS), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/CLOCKS/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
293 $(MAKDIR) $@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
294 $(CD) modules; $(CP) $(RBF) ../$@,NITROS9/6809L1/MODULES/RBF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
295 $(foreach file, $(RBF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/RBF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
296 $(MAKDIR) $@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
297 $(CD) modules; $(CP) $(SCF) ../$@,NITROS9/6809L1/MODULES/SCF
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
298 $(foreach file, $(SCF), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/SCF/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
299 $(MAKDIR) $@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
300 $(CD) modules; $(CP) $(PIPE) ../$@,NITROS9/6809L1/MODULES/PIPE
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
301 $(foreach file, $(PIPE), $(OS9ATTR_EXEC) $@,NITROS9/6809L1/MODULES/PIPE/$(file);)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
302 $(MAKDIR) $@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
303 $(CD) bootlists; $(CPL) *.bl ../$@,NITROS9/6809L1/BOOTLISTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
304 $(MAKDIR) $@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
305 $(CD) scripts; $(CPL) mb* ../$@,NITROS9/6809L1/SCRIPTS
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
306 $(RM) $(LDSK720K)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
307 $(SOFTLINK) $@ $(LDSK720K)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
308
2216
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
309 info:
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
310 @echo "*** NitrOS-9/6809 Level 1 for the Tandy Color Computer ***"
2217
0e1b2536b299 Updated macro names
boisy
parents: 2216
diff changeset
311 @$(foreach dsk, $(DSKS), $(ECHO) $(dsk);)
2216
d096a278e068 Added info targets
boisy
parents: 2199
diff changeset
312