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 6include $(MakeInc_cmd) 7include $(MakeInc_def) 8 9INSTINC_SUBDIRS = \ 10 mach \ 11 atm \ 12 corpses \ 13 bank \ 14 voucher \ 15 device \ 16 default_pager \ 17 mach_debug \ 18 kern \ 19 ipc \ 20 machine \ 21 UserNotification \ 22 gssd \ 23 kextd \ 24 lockd \ 25 vm \ 26 libsa \ 27 kdp \ 28 console \ 29 kperf \ 30 prng 31 32INSTINC_SUBDIRS_X86_64 = \ 33 mach \ 34 i386 \ 35 x86_64 36 37INSTINC_SUBDIRS_X86_64H = \ 38 mach \ 39 i386 \ 40 x86_64 41 42INSTINC_SUBDIRS_ARM = \ 43 mach \ 44 arm \ 45 arm64 46 47INSTINC_SUBDIRS_ARM64 = \ 48 mach \ 49 arm \ 50 arm64 51 52EXPINC_SUBDIRS = \ 53 mach \ 54 atm \ 55 corpses \ 56 bank \ 57 voucher \ 58 device \ 59 default_pager \ 60 mach_debug \ 61 kern \ 62 kdp \ 63 ipc \ 64 machine \ 65 UserNotification \ 66 gssd \ 67 kextd \ 68 lockd \ 69 vm \ 70 libsa \ 71 console \ 72 kperf \ 73 prng \ 74 tests 75 76 77EXPINC_SUBDIRS_X86_64 = \ 78 mach \ 79 i386 \ 80 x86_64 81EXPINC_SUBDIRS_X86_64H = \ 82 mach \ 83 i386 \ 84 x86_64 85EXPINC_SUBDIRS_ARM = \ 86 mach \ 87 arm \ 88 arm64 89EXPINC_SUBDIRS_ARM64 = \ 90 mach \ 91 arm \ 92 arm64 93 94COMP_SUBDIRS = \ 95 conf 96 97include $(MakeInc_rule) 98include $(MakeInc_dir) 99