]>
Commit | Line | Data |
---|---|---|
490019cf 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 | ||
f427ee49 A |
6 | # PRIVATE_DATAFILES go to /usr/local/include |
7 | LIBKERN_USE_USR_LOCAL_INCLUDE := 1 | |
8 | ||
490019cf A |
9 | include $(MakeInc_cmd) |
10 | include $(MakeInc_def) | |
11 | ||
490019cf | 12 | KERNELFILES = \ |
f427ee49 | 13 | atomic.h \ |
39037602 | 14 | base.h \ |
f427ee49 | 15 | cpp_util.h \ |
39037602 | 16 | log.h \ |
f427ee49 | 17 | object.h \ |
cb323159 | 18 | overflow.h \ |
f427ee49 | 19 | trace.h |
490019cf | 20 | |
39037602 | 21 | PRIVATE_KERNELFILES = \ |
f427ee49 A |
22 | atomic_private.h \ |
23 | atomic_private_arch.h \ | |
24 | atomic_private_impl.h \ | |
25 | base_private.h \ | |
0a7de745 | 26 | hash.h \ |
cb323159 | 27 | ptrtools.h \ |
d9a64523 | 28 | reason_private.h \ |
cb323159 A |
29 | refcnt.h \ |
30 | refcnt_internal.h | |
31 | ||
32 | DATAFILES = \ | |
f427ee49 A |
33 | atomic.h \ |
34 | base.h \ | |
cb323159 A |
35 | overflow.h |
36 | ||
37 | DRIVERKIT_DATAFILES = \ | |
f427ee49 | 38 | atomic.h \ |
cb323159 A |
39 | base.h \ |
40 | overflow.h | |
490019cf | 41 | |
5ba3f43e | 42 | PRIVATE_DATAFILES = \ |
f427ee49 A |
43 | atomic_private.h \ |
44 | atomic_private_arch.h \ | |
45 | atomic_private_impl.h \ | |
46 | base_private.h \ | |
5ba3f43e | 47 | reason_private.h |
490019cf | 48 | |
cb323159 A |
49 | INSTALL_MI_LIST = ${DATAFILES} |
50 | ||
51 | INSTALL_DRIVERKIT_MI_LIST = ${DRIVERKIT_DATAFILES} | |
490019cf A |
52 | |
53 | INSTALL_MI_DIR = os | |
54 | ||
39037602 | 55 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
490019cf A |
56 | |
57 | INSTALL_KF_MI_LIST = ${KERNELFILES} | |
58 | ||
59 | INSTALL_KF_MI_LCL_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES} | |
60 | ||
61 | EXPORT_MI_LIST = \ | |
39037602 | 62 | ${KERNELFILES} ${PRIVATE_KERNELFILES} log_private.h |
490019cf A |
63 | |
64 | EXPORT_MI_DIR = os | |
65 | ||
66 | include $(MakeInc_rule) | |
67 | include $(MakeInc_dir) |