]> git.saurik.com Git - apple/xnu.git/blame - Makefile
xnu-344.12.2.tar.gz
[apple/xnu.git] / Makefile
CommitLineData
1c79356b
A
1ifndef VERSDIR
2export VERSDIR=$(shell /bin/pwd)
3endif
9bccf70c
A
4ifndef SRCROOT
5export SRCROOT=$(shell /bin/pwd)
6endif
7ifndef OBJROOT
8export OBJROOT=$(SRCROOT)/BUILD/obj
9endif
10ifndef DSTROOT
11export DSTROOT=$(SRCROOT)/BUILD/dst
12endif
13ifndef SYMROOT
14export SYMROOT=$(SRCROOT)/BUILD/sym
15endif
1c79356b
A
16
17export MakeInc_cmd=${VERSDIR}/makedefs/MakeInc.cmd
18export MakeInc_def=${VERSDIR}/makedefs/MakeInc.def
19export MakeInc_rule=${VERSDIR}/makedefs/MakeInc.rule
20export MakeInc_dir=${VERSDIR}/makedefs/MakeInc.dir
21
22
23include $(MakeInc_cmd)
24include $(MakeInc_def)
25
26ALL_SUBDIRS = \
27 iokit \
28 osfmk \
29 bsd \
30 pexpert \
31 libkern \
32 libsa
33
34INSTINC_SUBDIRS = $(ALL_SUBDIRS)
35
36INSTINC_SUBDIRS_PPC = $(INSTINC_SUBDIRS)
37
38INSTINC_SUBDIRS_I386 = $(INSTINC_SUBDIRS)
39
40EXPINC_SUBDIRS = $(ALL_SUBDIRS)
41
42EXPINC_SUBDIRS_PPC = $(EXPINC_SUBDIRS)
43
44EXPINC_SUBDIRS_I386 = $(EXPINC_SUBDIRS)
45
46COMP_SUBDIRS = $(ALL_SUBDIRS)
47
48INST_SUBDIRS = \
49 libkern \
50 libsa \
51 iokit \
52 osfmk \
53 bsd
54
55INSTALL_FILE_LIST= \
56 mach_kernel
57
58INSTALL_FILE_DIR= \
59 /
60
9bccf70c
A
61INSTMAN_SUBDIRS = \
62 bsd
63
1c79356b
A
64include $(MakeInc_rule)
65include $(MakeInc_dir)