Mercurial > hg > Members > kono > nitros9-code
view level2/coco3/bootfiles/makefile @ 556:28a203bbd2cc
findstr and signal finished.
author | roug |
---|---|
date | Tue, 22 Oct 2002 19:09:04 +0000 |
parents | a7e130bc6a17 |
children | bd97435054d2 |
line wrap: on
line source
include ../../Makefile.rules # Module directory MD = ../MODULES # Commands directory CD = ../CMDS DEPENDS = ./Makefile KERNEL_STOCK = $(MD)/rel $(MD)/boot_1773 $(MD)/os9p1 # OS-9 disk bootfile to allow booting from WD1773 disk controller BOOTFILE_STOCK = $(MD)/os9p2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ $(MD)/cc3disk.dr $(MD)/d0_40d.dd $(MD)/d1_80d.dd \ $(MD)/ddd0_40d.dd \ $(MD)/scf.mn $(MD)/cc3io.dr \ $(MD)/keydrv $(MD)/joydrv_joy $(MD)/snddrv \ $(MD)/windint.io $(MD)/vdgint.io \ $(MD)/term_vdg.dt \ $(MD)/w.dw $(MD)/w1.dw $(MD)/w2.dw $(MD)/w3.dw $(MD)/w4.dw \ $(MD)/w5.dw $(MD)/w6.dw $(MD)/w7.dw \ $(MD)/pipeman.mn $(MD)/piper.dr $(MD)/pipe.dd \ $(MD)/clock $(MD)/clock2_soft BOOTFILES = bootfile_stock KERNELS = kernel_stock ALLOBJS = $(BOOTFILES) $(KERNELS) all: $(ALLOBJS) $(CHMOD) 600 $(ALLOBJS) bootfile_stock: $(BOOTFILE_STOCK) $(DEPENDS) $(MERGE) $(BOOTFILE_STOCK)>$@ kernel_stock: $(KERNEL_STOCK) $(DEPENDS) $(MERGE) $(KERNEL_STOCK)>$@ clean: $(RM) $(ALLOBJS)