]>
Commit | Line | Data |
---|---|---|
1c79356b 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 | ||
6d2010ae A |
6 | IOKIT_INCVERS = A |
7 | IOKIT_INCFRAME = $(FRAMEDIR)/IOKit.framework | |
8 | IOKIT_INCDIR = $(IOKIT_INCFRAME)/Versions/$(IOKIT_INCVERS)/Headers | |
9 | IOKIT_PINCDIR = $(IOKIT_INCFRAME)/Versions/$(IOKIT_INCVERS)/PrivateHeaders | |
10 | ||
39236c6e A |
11 | INCDIR = $(IOKIT_INCDIR) |
12 | LCLDIR = $(IOKIT_PINCDIR) | |
1c79356b A |
13 | |
14 | include $(MakeInc_cmd) | |
15 | include $(MakeInc_def) | |
16 | ||
17 | INSTINC_SUBDIRS = \ | |
1c79356b | 18 | nvram \ |
1c79356b A |
19 | platform \ |
20 | power \ | |
21 | pwr_mgt \ | |
22 | rtc \ | |
1c79356b A |
23 | system_management |
24 | ||
1c79356b | 25 | EXPINC_SUBDIRS = ${INSTINC_SUBDIRS} |
316670eb | 26 | |
fe8ab488 A |
27 | # By default, everything in xnu/iokit/IOKit gets installed into |
28 | # Kernel.framework/Headers/IOKit AND Kernel.framework/PrivateHeaders/IOKit. | |
29 | # This is so the files with #ifdef ...PRIVATE portions can be processed. | |
30 | # xnu/README documents the INSTALL* and EXPORT_MI_DIR lists. | |
31 | ALL_HEADERS = $(shell (cd $(SOURCE); echo *.h)) | |
32 | ||
33 | # Do not install these headers (anywhere). | |
34 | NOT_EXPORT_HEADERS = IOInterruptAccountingPrivate.h | |
91447636 | 35 | |
fe8ab488 | 36 | # Install these only in Kernel.framework's PrivateHeaders (not Headers). |
2d21ac55 A |
37 | NOT_KF_MI_HEADERS = $(NOT_EXPORT_HEADERS) \ |
38 | IOKitKeysPrivate.h IOCPU.h \ | |
39 | IOHibernatePrivate.h IOPolledInterface.h \ | |
6d2010ae | 40 | IOCommandQueue.h IOLocksPrivate.h \ |
316670eb | 41 | IOSyncer.h AppleKeyStoreInterface.h \ |
fe8ab488 A |
42 | IOStatistics.h IOStatisticsPrivate.h \ |
43 | IOKernelReporters.h | |
1c79356b | 44 | |
fe8ab488 | 45 | # These should be additionally installed in IOKit.framework's public Headers |
1c79356b A |
46 | INSTALL_MI_LIST = IOBSD.h IOKitKeys.h IOKitServer.h IOReturn.h\ |
47 | IOSharedLock.h IOTypes.h OSMessageNotification.h\ | |
fe8ab488 | 48 | IODataQueueShared.h IOMessage.h IOInterruptAccounting.h\ |
39236c6e | 49 | |
fe8ab488 | 50 | # These should be additionally installed in IOKit.framework's PrivateHeaders |
39236c6e A |
51 | INSTALL_MI_LCL_LIST = IOKitKeysPrivate.h IOHibernatePrivate.h \ |
52 | IOLocksPrivate.h IOStatistics.h \ | |
fe8ab488 A |
53 | AppleKeyStoreInterface.h \ |
54 | IOReportTypes.h IOKernelReportStructs.h \ | |
55 | IOReportMacros.h | |
1c79356b A |
56 | |
57 | INSTALL_MI_DIR = . | |
58 | ||
59 | EXPORT_MI_LIST = $(filter-out $(NOT_EXPORT_HEADERS), $(ALL_HEADERS)) | |
60 | ||
61 | EXPORT_MI_DIR = IOKit | |
62 | ||
91447636 A |
63 | INSTALL_KF_MI_LIST = $(filter-out $(NOT_KF_MI_HEADERS), $(ALL_HEADERS)) |
64 | ||
1c79356b A |
65 | include $(MakeInc_rule) |
66 | include $(MakeInc_dir) |