Mercurial > hg > Members > kono > nitros9-code
annotate level2/modules/kernel/makefile @ 1868:cba8a54bc509
Slowly but surely
author | boisy |
---|---|
date | Fri, 29 Jul 2005 19:40:14 +0000 |
parents | 5f18094d961d |
children | cdb589869808 |
rev | line source |
---|---|
1363 | 1 include ../../../rules.mak |
1145 | 2 |
1587
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
3 vpath %.asm $(6809L1)/modules/kernel |
1145 | 4 |
1363 | 5 DEPENDS = ./makefile |
1587
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
6 AFLAGS += -I$(6809L1)/modules/kernel |
1145 | 7 |
1587
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
8 KERNEL = krn |
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
9 KERNELP2 = krnp2 |
1145 | 10 SYSCALLS = fallimg.asm fallram.asm falltsk.asm faproc.asm fcmpnam.asm \ |
11 fcpymem.asm fdatlog.asm fdelram.asm ffmodul.asm ffreehb.asm \ | |
12 fld.asm fldabx.asm flink.asm fmove.asm fnproc.asm fprsnam.asm \ | |
13 freboot.asm fsrqmem.asm fssvc.asm fvmodul.asm \ | |
14 fallbit.asm fallprc.asm fchain.asm fclrblk.asm fcrcmod.asm \ | |
15 fdelimg.asm fexit.asm ffind64.asm ffork.asm fgblkmp.asm \ | |
16 fgcmdir.asm fgmoddr.asm fgprdsc.asm fgprocp.asm ficpt.asm \ | |
17 fid.asm fmapblk.asm fmem.asm fsend.asm fsleep.asm fsprior.asm \ | |
18 fsswi.asm fstime.asm fsuser.asm funlink.asm funload.asm | |
19 | |
1378 | 20 ALLOBJS = $(KERNEL) $(KERNELP2) |
1145 | 21 |
22 all: $(ALLOBJS) | |
23 | |
1587
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
24 $(KERNEL): krn.asm $(SYSCALLS) |
1145 | 25 |
1587
5f18094d961d
kernel modules renamed to krn, updated makefiles, clock2_tc3 now clock2_cloud9...
boisy
parents:
1451
diff
changeset
|
26 $(KERNELP2): krnp2.asm $(SYSCALLS) |
1145 | 27 |
28 clean: | |
29 $(RM) $(ALLOBJS) | |
30 | |
31 showobjs: | |
32 @$(ECHO) $(ALLOBJS) | |
33 | |
34 showcopyobjs: | |
35 @$(ECHO) $(COPYOBJS) | |
36 | |
37 identify: | |
38 $(IDENT_SHORT) $(ALLOBJS) |