forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (35 loc) · 816 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
ifndef VERSDIR
export VERSDIR=$(shell /bin/pwd)
endif
export MakeInc_cmd=${VERSDIR}/makedefs/MakeInc.cmd
export MakeInc_def=${VERSDIR}/makedefs/MakeInc.def
export MakeInc_rule=${VERSDIR}/makedefs/MakeInc.rule
export MakeInc_dir=${VERSDIR}/makedefs/MakeInc.dir
include $(MakeInc_cmd)
include $(MakeInc_def)
ALL_SUBDIRS = \
iokit \
osfmk \
bsd \
pexpert \
libkern \
libsa
INSTINC_SUBDIRS = $(ALL_SUBDIRS)
INSTINC_SUBDIRS_PPC = $(INSTINC_SUBDIRS)
INSTINC_SUBDIRS_I386 = $(INSTINC_SUBDIRS)
EXPINC_SUBDIRS = $(ALL_SUBDIRS)
EXPINC_SUBDIRS_PPC = $(EXPINC_SUBDIRS)
EXPINC_SUBDIRS_I386 = $(EXPINC_SUBDIRS)
COMP_SUBDIRS = $(ALL_SUBDIRS)
INST_SUBDIRS = \
libkern \
libsa \
iokit \
osfmk \
bsd
INSTALL_FILE_LIST= \
mach_kernel
INSTALL_FILE_DIR= \
/
include $(MakeInc_rule)
include $(MakeInc_dir)