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_I386 = \
13
14EXPINC_SUBDIRS = \
15
16EXPINC_SUBDIRS_I386 = \
17
18# In both the framework PrivateHeader area and /usr/include/uuid
19DATAFILES = \
20	uuid.h
21
22# Only in the framework PrivateHeader area
23PRIVATE_DATAFILES = \
24
25# KERNELFILES will appear only in the kernel framework
26KERNELFILES = \
27	uuid.h
28
29
30# Only in the private kernel framework
31PRIVATE_KERNELFILES = \
32	
33
34INSTALL_MI_LIST	= ${DATAFILES}
35
36INSTALL_MI_DIR = uuid
37
38EXPORT_MI_LIST	= ${KERNELFILES} ${PRIVATE_KERNELFILES}
39
40EXPORT_MI_DIR = uuid
41
42# /System/Library/Frameworks/System.framework/PrivateHeaders
43INSTALL_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES}
44
45# /System/Library/Frameworks/Kernel.framework/PrivateHeaders
46
47INSTALL_KF_MI_LCL_LIST =  ${KERNELFILES} ${PRIVATE_KERNELFILES}
48
49# /System/Library/Frameworks/Kernel.framework/Headers
50
51INSTALL_KF_MI_LIST = ${KERNELFILES}
52
53include $(MakeInc_rule)
54include $(MakeInc_dir)
55
56
57