1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5
6
7include $(MakeInc_cmd)
8include $(MakeInc_def)
9
10INSTINC_SUBDIRS = \
11
12INSTINC_SUBDIRS_PPC = \
13
14INSTINC_SUBDIRS_I386 = \
15
16EXPINC_SUBDIRS = \
17
18EXPINC_SUBDIRS_PPC = \
19
20EXPINC_SUBDIRS_I386 = \
21
22# In both the framework PrivateHeader area and /usr/include/uuid
23DATAFILES = \
24	uuid.h
25
26# Only in the framework PrivateHeader area
27PRIVATE_DATAFILES = \
28
29# KERNELFILES will appear only in the kernel framework
30KERNELFILES = \
31	uuid.h
32
33
34# Only in the private kernel framework
35PRIVATE_KERNELFILES = \
36	
37
38INSTALL_MI_LIST	= ${DATAFILES}
39
40INSTALL_MI_DIR = uuid
41
42EXPORT_MI_LIST	= ${KERNELFILES} ${PRIVATE_KERNELFILES}
43
44EXPORT_MI_DIR = uuid
45
46# /System/Library/Frameworks/System.framework/PrivateHeaders
47INSTALL_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES}
48
49# /System/Library/Frameworks/Kernel.framework/PrivateHeaders
50
51INSTALL_KF_MI_LCL_LIST =  ${KERNELFILES} ${PRIVATE_KERNELFILES}
52
53# /System/Library/Frameworks/Kernel.framework/Headers
54
55INSTALL_KF_MI_LIST = ${KERNELFILES}
56
57include $(MakeInc_rule)
58include $(MakeInc_dir)
59
60
61