annotate level2/coco3_6309/bootfiles/makefile @ 509:a7e130bc6a17

bootfile_stock and kernel_stock are now made
author boisy
date Thu, 10 Oct 2002 14:58:03 +0000
parents b785cc2c744d
children bd97435054d2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 include ../../Makefile.rules
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 # Module directory
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4 MD = ../MODULES
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 # Commands directory
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 CD = ../CMDS
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 DEPENDS = ./Makefile
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9
509
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
10 KERNEL_STOCK = $(MD)/rel $(MD)/boot_1773 $(MD)/os9p1
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 # OS-9 disk bootfile to allow booting from WD1773 disk controller
509
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
13 BOOTFILE_STOCK = $(MD)/os9p2 $(MD)/ioman $(MD)/init \
429
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
14 $(MD)/rbf.mn \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
15 $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_80d.dd \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
16 $(MD)/ddd0_40d.dd \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
17 $(MD)/scf.mn $(MD)/cc3io.dr \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
18 $(MD)/keydrv $(MD)/joydrv_joy $(MD)/snddrv \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
19 $(MD)/windint.io $(MD)/vdgint.io \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
20 $(MD)/term_vdg.dt \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
21 $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
22 $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
23 $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \
63c0e387d77b Made more changes
boisy
parents: 428
diff changeset
24 $(MD)/clock $(MD)/clock2_soft
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
25
509
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
26 BOOTFILES = bootfile_stock
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
27 KERNELS = kernel_stock
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
28
428
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
29 ALLOBJS = $(BOOTFILES) $(KERNELS)
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
30
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
31 all: $(ALLOBJS)
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
32 $(CHMOD) 600 $(ALLOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
33
509
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
34 bootfile_stock: $(BOOTFILE_STOCK) $(DEPENDS)
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
35 $(MERGE) $(BOOTFILE_STOCK)>$@
428
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
36
509
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
37 kernel_stock: $(KERNEL_STOCK) $(DEPENDS)
a7e130bc6a17 bootfile_stock and kernel_stock are now made
boisy
parents: 501
diff changeset
38 $(MERGE) $(KERNEL_STOCK)>$@
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
39
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
40 clean:
428
5fe28064bb4f Kernel trakcs now made here
boisy
parents: 424
diff changeset
41 $(RM) $(ALLOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
42