]>
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 = \ | |
316670eb | 11 | altq classq pktsched |
1c79356b | 12 | |
1c79356b | 13 | DATAFILES= \ |
3e170ce0 A |
14 | bpf.h \ |
15 | dlil.h \ | |
16 | ethernet.h \ | |
17 | if.h \ | |
18 | if_arp.h \ | |
19 | if_dl.h \ | |
20 | if_llc.h \ | |
21 | if_media.h \ | |
22 | if_mib.h \ | |
23 | if_types.h \ | |
24 | if_var.h \ | |
39236c6e | 25 | if_utun.h \ |
3e170ce0 A |
26 | kext_net.h \ |
27 | ndrv.h \ | |
28 | pfkeyv2.h \ | |
91447636 A |
29 | route.h |
30 | ||
31 | KERNELFILES= \ | |
32 | kpi_interface.h kpi_interfacefilter.h kpi_protocol.h \ | |
2d21ac55 | 33 | if_ether.h init.h radix.h |
9bccf70c A |
34 | |
35 | PRIVATE_DATAFILES = \ | |
3e170ce0 A |
36 | bpf.h \ |
37 | content_filter.h \ | |
38 | etherdefs.h \ | |
39 | firewire.h \ | |
40 | if.h \ | |
41 | if_bond_var.h \ | |
42 | if_bond_internal.h \ | |
43 | if_bridgevar.h \ | |
44 | if_ipsec.h \ | |
45 | if_llreach.h \ | |
46 | if_media.h \ | |
47 | if_mib.h \ | |
48 | if_pflog.h \ | |
49 | if_ppp.h \ | |
50 | if_utun.h \ | |
51 | if_utun_crypto.h \ | |
52 | if_utun_crypto_ipsec.h \ | |
53 | if_utun_crypto_dtls.h \ | |
54 | if_var.h \ | |
55 | if_vlan_var.h \ | |
56 | iptap.h \ | |
57 | lacp.h \ | |
58 | ndrv_var.h \ | |
59 | necp.h \ | |
60 | netsrc.h \ | |
61 | network_agent.h \ | |
62 | ntstat.h \ | |
63 | packet_mangler.h \ | |
64 | pfkeyv2.h \ | |
65 | pfvar.h \ | |
66 | pktap.h \ | |
67 | ppp_defs.h \ | |
68 | radix.h \ | |
69 | raw_cb.h \ | |
70 | route.h \ | |
71 | net_perf.h | |
91447636 | 72 | |
39236c6e | 73 | PRIVATE_KERNELFILES = $(filter-out radix.h,${KERNELFILES}) \ |
316670eb | 74 | bpfdesc.h ppp_comp.h \ |
6d2010ae | 75 | zlib.h bpf_compat.h net_osdep.h \ |
3e170ce0 | 76 | flowadv.h net_perf.h |
1c79356b A |
77 | |
78 | INSTALL_MI_LIST = ${DATAFILES} | |
79 | ||
80 | INSTALL_MI_DIR = net | |
81 | ||
91447636 | 82 | EXPORT_MI_LIST = ${INSTALL_MI_LIST} ${KERNELFILES} |
1c79356b | 83 | |
9bccf70c | 84 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} |
1c79356b | 85 | |
3e170ce0 | 86 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
9bccf70c | 87 | |
3e170ce0 | 88 | INSTALL_KF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES} ${PRIVATE_KERNELFILES}) |
1c79356b A |
89 | |
90 | include $(MakeInc_rule) | |
91 | include $(MakeInc_dir) |