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_ARM64 = \ 43 mach \ 44 arm \ 45 arm64 46 47EXPINC_SUBDIRS = \ 48 mach \ 49 atm \ 50 corpses \ 51 bank \ 52 voucher \ 53 device \ 54 default_pager \ 55 mach_debug \ 56 kern \ 57 kdp \ 58 ipc \ 59 machine \ 60 UserNotification \ 61 gssd \ 62 kextd \ 63 lockd \ 64 vm \ 65 libsa \ 66 console \ 67 kperf \ 68 prng \ 69 tests 70 71 72EXPINC_SUBDIRS_X86_64 = \ 73 mach \ 74 i386 \ 75 x86_64 76EXPINC_SUBDIRS_X86_64H = \ 77 mach \ 78 i386 \ 79 x86_64 80EXPINC_SUBDIRS_ARM64 = \ 81 mach \ 82 arm \ 83 arm64 84 85COMP_SUBDIRS = \ 86 conf 87 88include $(MakeInc_rule) 89include $(MakeInc_dir) 90