]>
Commit | Line | Data |
---|---|---|
d9a64523 A |
1 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
2 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
3 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
4 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
5 | ||
6 | include $(MakeInc_cmd) | |
7 | include $(MakeInc_def) | |
8 | ||
9 | DATAFILES = \ | |
10 | bsdthread_private.h \ | |
11 | priority_private.h \ | |
12 | workqueue_syscalls.h | |
13 | ||
14 | PRIVATE_DATAFILES = \ | |
15 | bsdthread_private.h \ | |
16 | priority_private.h \ | |
17 | workqueue_syscalls.h | |
18 | ||
19 | KERNELFILES = \ | |
20 | ||
21 | PRIVATE_KERNELFILES = \ | |
22 | ||
23 | INTERNAL_KERNELFILES = \ | |
24 | bsdthread_private.h \ | |
25 | priority_private.h \ | |
26 | workqueue_internal.h \ | |
27 | workqueue_syscalls.h \ | |
28 | workqueue_trace.h | |
29 | ||
30 | INSTALL_MI_DIR = pthread | |
31 | ||
32 | # /usr/local/include without PRIVATE stuff | |
33 | # /System/Library/Frameworks/System.framework/PrivateHeaders | |
cb323159 | 34 | INCDIR = $(SDKHEADERSROOT)/usr/local/include |
d9a64523 A |
35 | INSTALL_MI_LIST = ${DATAFILES} |
36 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} | |
37 | ||
38 | # /System/Library/Frameworks/Kernel.framework/Headers | |
39 | # /System/Library/Frameworks/Kernel.framework/PrivateHeaders | |
40 | INSTALL_KF_MI_LIST = $(sort ${KERNELFILES}) | |
41 | INSTALL_KF_MI_LCL_LIST = $(sort ${KERNELFILES} ${PRIVATE_KERNELFILES}) | |
42 | ||
43 | EXPORT_MI_LIST = $(sort ${KERNELFILES} ${PRIVATE_KERNELFILES} ${INTERNAL_KERNELFILES}) | |
44 | ||
45 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} | |
46 | ||
47 | include $(MakeInc_rule) | |
48 | include $(MakeInc_dir) |