Mercurial > hg > Members > kono > nitros9-code
annotate level2/coco3/modules/kernel/makefile @ 2615:530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Mon, 06 Feb 2012 15:51:13 -0600 |
parents | d63587190d9b |
children | ead54d2c06d4 |
rev | line source |
---|---|
2048 | 1 PORT = coco3 |
2 include $(NITROS9DIR)/rules.mak | |
3 | |
2050 | 4 vpath %.asm $(LEVEL2)/modules/kernel:$(LEVEL1)/modules/kernel |
2048 | 5 |
6 DEPENDS = ./makefile | |
2050 | 7 AFLAGS += -I$(LEVEL2)/modules/kernel -I$(LEVEL1)/modules/kernel |
2048 | 8 |
9 KERNEL = krn | |
2615
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
10 KERNEL_CCB = ccbkrn |
2048 | 11 KERNELP2 = krnp2 |
12 SYSCALLS = fallimg.asm fallram.asm falltsk.asm faproc.asm fcmpnam.asm \ | |
13 fcpymem.asm fdatlog.asm fdelram.asm ffmodul.asm ffreehb.asm \ | |
14 fld.asm fldabx.asm flink.asm fmove.asm fnproc.asm fprsnam.asm \ | |
2615
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
15 freboot.asm fssvc.asm fvmodul.asm \ |
2048 | 16 fallbit.asm fallprc.asm fchain.asm fclrblk.asm fcrcmod.asm \ |
17 fdelimg.asm fexit.asm ffind64.asm ffork.asm fgblkmp.asm \ | |
18 fgcmdir.asm fgmoddr.asm fgprdsc.asm fgprocp.asm ficpt.asm \ | |
19 fid.asm fmapblk.asm fmem.asm fsend.asm fsleep.asm fsprior.asm \ | |
20 fsswi.asm fstime.asm fsuser.asm funlink.asm funload.asm | |
21 | |
2615
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
22 ALLOBJS = $(KERNEL) $(KERNEL_CCB) $(KERNELP2) |
2048 | 23 |
24 all: $(ALLOBJS) | |
25 | |
2615
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
26 $(KERNEL): krn.asm $(SYSCALLS) fsrqmem.asm |
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
27 |
530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2050
diff
changeset
|
28 $(KERNEL_CCB): ccbkrn.asm $(SYSCALLS) ccbfsrqmem.asm |
2048 | 29 |
30 $(KERNELP2): krnp2.asm $(SYSCALLS) | |
31 | |
32 clean: | |
33 $(RM) $(ALLOBJS) | |
34 | |
35 showobjs: | |
36 @$(ECHO) $(ALLOBJS) | |
37 | |
38 showcopyobjs: | |
39 @$(ECHO) $(COPYOBJS) | |
40 | |
41 identify: | |
42 $(IDENT_SHORT) $(ALLOBJS) |