]>
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 | ||
6 | ||
7 | include $(MakeInc_cmd) | |
8 | include $(MakeInc_def) | |
9 | ||
10 | INSTINC_SUBDIRS = \ | |
11 | ||
1c79356b A |
12 | INSTINC_SUBDIRS_I386 = \ |
13 | ||
14 | EXPINC_SUBDIRS = \ | |
15 | ||
1c79356b A |
16 | EXPINC_SUBDIRS_I386 = \ |
17 | ||
18 | DATAFILES= \ | |
91447636 A |
19 | bpf.h dlil.h \ |
20 | ethernet.h if.h if_arp.h \ | |
9bccf70c | 21 | if_dl.h if_llc.h if_media.h if_mib.h \ |
d1ecb069 | 22 | if_types.h if_utun.h if_var.h \ |
91447636 A |
23 | kext_net.h ndrv.h pfkeyv2.h \ |
24 | route.h | |
25 | ||
26 | KERNELFILES= \ | |
27 | kpi_interface.h kpi_interfacefilter.h kpi_protocol.h \ | |
2d21ac55 | 28 | if_ether.h init.h radix.h |
9bccf70c A |
29 | |
30 | PRIVATE_DATAFILES = \ | |
6d2010ae | 31 | if_vlan_var.h if_ppp.h firewire.h \ |
91447636 | 32 | ppp_defs.h radix.h if_bond_var.h lacp.h ndrv_var.h \ |
6d2010ae A |
33 | netsrc.h raw_cb.h etherdefs.h iso88025.h if_pflog.h pfvar.h \ |
34 | if_bridgevar.h ntstat.h if_llreach.h | |
91447636 A |
35 | |
36 | PRIVATE_KERNELFILES = ${KERNELFILES} \ | |
2d21ac55 | 37 | bpfdesc.h dlil_pvt.h ppp_comp.h \ |
6d2010ae A |
38 | zlib.h bpf_compat.h net_osdep.h \ |
39 | ntstat.h if_llreach.h | |
1c79356b A |
40 | |
41 | INSTALL_MI_LIST = ${DATAFILES} | |
42 | ||
43 | INSTALL_MI_DIR = net | |
44 | ||
91447636 | 45 | EXPORT_MI_LIST = ${INSTALL_MI_LIST} ${KERNELFILES} |
1c79356b | 46 | |
9bccf70c | 47 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} |
1c79356b | 48 | |
9bccf70c A |
49 | INSTALL_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} |
50 | ||
91447636 | 51 | INSTALL_KF_MI_LCL_LIST = ${INSTALL_MI_LCL_LIST} ${PRIVATE_KERNELFILES} |
1c79356b A |
52 | |
53 | include $(MakeInc_rule) | |
54 | include $(MakeInc_dir) |