comparison level1/coco1/modules/kernel/makefile @ 2690:6e40b043d3e0 lwtools-port

Removed coco port, added coco1 and coco2 ports. Cleaned term* descriptors to make unified between Level 1 and Level 2
author Boisy Pitre <boisy.pitre@nuance.com>
date Thu, 19 Jul 2012 10:09:15 -0500
parents
children 678c6848dc12
comparison
equal deleted inserted replaced
2689:80d85940d03b 2690:6e40b043d3e0
1 PORT = coco
2 include $(NITROS9DIR)/rules.mak
3
4 vpath %.asm $(LEVEL1)/modules/kernel
5
6 DEPENDS = ./makefile
7
8 KERNEL = krn
9 KERNELP2 = krnp2
10 SYSCALLS = fcmpnam.asm fprsnam.asm
11
12 AFLAGS += -I$(LEVEL1)/modules/kernel
13
14 ALLOBJS = $(KERNEL) $(KERNELP2)
15
16 all: $(ALLOBJS)
17
18 $(KERNEL): krn.asm $(SYSCALLS)
19
20 $(KERNELP2): krnp2.asm $(SYSCALLS)
21
22 clean:
23 $(RM) $(ALLOBJS)
24
25 showobjs:
26 @$(ECHO) $(ALLOBJS)
27
28 showcopyobjs:
29 @$(ECHO) $(COPYOBJS)
30
31 identify:
32 $(IDENT_SHORT) $(ALLOBJS)