Mercurial > hg > Members > kono > nitros9-code
changeset 3105:94470c7cc95e
l2/6309: Add ccb to kernel makefile
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 28 Feb 2016 21:38:22 +0100 |
parents | f0aaf9c29516 |
children | 5119107aaaa7 |
files | level2/coco3/modules/kernel/makefile level2/coco3_6309/modules/kernel/makefile |
diffstat | 2 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/level2/coco3/modules/kernel/makefile Sun Feb 28 21:38:18 2016 +0100 +++ b/level2/coco3/modules/kernel/makefile Sun Feb 28 21:38:22 2016 +0100 @@ -19,7 +19,6 @@ fid.asm fmapblk.asm fmem.asm fsend.asm fsleep.asm fsprior.asm \ fsswi.asm fstime.asm fsuser.asm funlink.asm funload.asm -#ALLOBJS = $(KERNEL) $(KERNEL_CCB) $(KERNELP2) ALLOBJS = $(KERNEL) $(KERNELP2) $(KERNEL_CCB) all: $(ALLOBJS)
--- a/level2/coco3_6309/modules/kernel/makefile Sun Feb 28 21:38:18 2016 +0100 +++ b/level2/coco3_6309/modules/kernel/makefile Sun Feb 28 21:38:22 2016 +0100 @@ -7,22 +7,25 @@ AFLAGS += -DH6309=1 -I$(LEVEL2)/modules/kernel -I$(LEVEL1)/modules/kernel KERNEL = krn +KERNEL_CCB = ccbkrn KERNELP2 = krnp2 SYSCALLS = fallimg.asm fallram.asm falltsk.asm faproc.asm fcmpnam.asm \ fcpymem.asm fdatlog.asm fdelram.asm ffmodul.asm ffreehb.asm \ fld.asm fldabx.asm flink.asm fmove.asm fnproc.asm fprsnam.asm \ - fdebug.asm fsrqmem.asm fssvc.asm fvmodul.asm \ + fdebug.asm fssvc.asm fvmodul.asm \ fallbit.asm fallprc.asm fchain.asm fclrblk.asm fcrcmod.asm \ fdelimg.asm fexit.asm ffind64.asm ffork.asm fgblkmp.asm \ fgcmdir.asm fgmoddr.asm fgprdsc.asm fgprocp.asm ficpt.asm \ fid.asm fmapblk.asm fmem.asm fsend.asm fsleep.asm fsprior.asm \ fsswi.asm fstime.asm fsuser.asm funlink.asm funload.asm -ALLOBJS = $(KERNEL) $(KERNELP2) +ALLOBJS = $(KERNEL) $(KERNELP2) $(KERNEL_CCB) all: $(ALLOBJS) -$(KERNEL): krn.asm $(SYSCALLS) +$(KERNEL): krn.asm $(SYSCALLS) fsrqmem.asm + +$(KERNEL_CCB): ccbkrn.asm $(SYSCALLS) ccbfsrqmem.asm $(KERNELP2): krnp2.asm $(SYSCALLS)