]> git.saurik.com Git - apple/xnu.git/blob - Makefile
xnu-1699.24.23.tar.gz
[apple/xnu.git] / Makefile
1 ifndef VERSDIR
2 export VERSDIR=$(shell /bin/pwd)
3 endif
4 ifndef SRCROOT
5 export SRCROOT=$(shell /bin/pwd)
6 endif
7 ifndef OBJROOT
8 export OBJROOT=$(SRCROOT)/BUILD/obj/
9 endif
10 ifndef DSTROOT
11 export DSTROOT=$(SRCROOT)/BUILD/dst/
12 endif
13 ifndef SYMROOT
14 export SYMROOT=$(SRCROOT)/BUILD/sym/
15 endif
16
17 export MakeInc_cmd=${VERSDIR}/makedefs/MakeInc.cmd
18 export MakeInc_def=${VERSDIR}/makedefs/MakeInc.def
19 export MakeInc_rule=${VERSDIR}/makedefs/MakeInc.rule
20 export MakeInc_dir=${VERSDIR}/makedefs/MakeInc.dir
21
22
23 include $(MakeInc_cmd)
24 include $(MakeInc_def)
25
26 ALL_SUBDIRS = \
27 iokit \
28 osfmk \
29 bsd \
30 pexpert \
31 libkern \
32 libsa \
33 security
34
35 CONFIG_SUBDIRS_I386 = config
36 CONFIG_SUBDIRS_X86_64 = config
37 CONFIG_SUBDIRS_ARM = config
38
39 INSTINC_SUBDIRS = $(ALL_SUBDIRS) EXTERNAL_HEADERS
40 INSTINC_SUBDIRS_I386 = $(INSTINC_SUBDIRS)
41 INSTINC_SUBDIRS_X86_64 = $(INSTINC_SUBDIRS)
42 INSTINC_SUBDIRS_ARM = $(INSTINC_SUBDIRS)
43
44 EXPINC_SUBDIRS = $(ALL_SUBDIRS)
45 EXPINC_SUBDIRS_I386 = $(EXPINC_SUBDIRS)
46 EXPINC_SUBDIRS_X86_64 = $(EXPINC_SUBDIRS)
47 EXPINC_SUBDIRS_ARM = $(EXPINC_SUBDIRS)
48
49 SETUP_SUBDIRS = SETUP
50
51 COMP_SUBDIRS_I386 = $(ALL_SUBDIRS)
52 COMP_SUBDIRS_X86_64 = $(ALL_SUBDIRS)
53 COMP_SUBDIRS_ARM = $(ALL_SUBDIRS)
54
55 INST_SUBDIRS = \
56 libkern \
57 libsa \
58 iokit \
59 osfmk \
60 bsd \
61 config \
62 security
63
64 INSTALL_KERNEL_FILE = mach_kernel
65
66 INSTALL_KERNEL_DIR = /
67
68
69 INSTMAN_SUBDIRS = \
70 bsd
71
72 include $(MakeInc_rule)
73 include $(MakeInc_dir)
74
75 # This target is defined to compile and run xnu_quick_test under testbots
76 testbots:
77 /usr/bin/make MORECFLAGS="-D RUN_UNDER_TESTBOTS=1" testbots -C ./tools/tests/xnu_quick_test/
78