comparison level1/modules/kernel/makefile @ 1453:5dbf908c1483

Kernel and KernelP2 moved to krnl/
author boisy
date Thu, 11 Dec 2003 23:47:53 +0000
parents
children cc2d2a033ced
comparison
equal deleted inserted replaced
1452:32b27b6792b6 1453:5dbf908c1483
1 include ../../../rules.mak
2
3 DEPENDS = ./makefile
4
5 KERNEL = kernel
6 KERNELP2 = kernelp2
7 SYSCALLS = fcmpnam.asm fprsnam.asm
8
9 ALLOBJS = $(KERNEL) $(KERNELP2)
10
11 all: $(ALLOBJS)
12
13 $(KERNEL): kernel.asm $(SYSCALLS)
14
15 $(KERNELP2): kernelp2.asm $(SYSCALLS)
16
17 clean:
18 $(RM) $(ALLOBJS)
19
20 showobjs:
21 @$(ECHO) $(ALLOBJS)
22
23 showcopyobjs:
24 @$(ECHO) $(COPYOBJS)
25
26 identify:
27 $(IDENT_SHORT) $(ALLOBJS)