]>
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 | ||
1c79356b A |
6 | include $(MakeInc_cmd) |
7 | include $(MakeInc_def) | |
8 | ||
9 | INSTINC_SUBDIRS = \ | |
316670eb | 10 | altq classq pktsched |
1c79356b | 11 | |
1c79356b | 12 | DATAFILES= \ |
3e170ce0 A |
13 | bpf.h \ |
14 | dlil.h \ | |
15 | ethernet.h \ | |
16 | if.h \ | |
17 | if_arp.h \ | |
18 | if_dl.h \ | |
19 | if_llc.h \ | |
20 | if_media.h \ | |
21 | if_mib.h \ | |
22 | if_types.h \ | |
23 | if_var.h \ | |
39236c6e | 24 | if_utun.h \ |
3e170ce0 A |
25 | kext_net.h \ |
26 | ndrv.h \ | |
27 | pfkeyv2.h \ | |
39037602 A |
28 | route.h \ |
29 | net_kev.h | |
91447636 A |
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 \ | |
3e170ce0 A |
51 | if_var.h \ |
52 | if_vlan_var.h \ | |
53 | iptap.h \ | |
54 | lacp.h \ | |
55 | ndrv_var.h \ | |
56 | necp.h \ | |
57 | netsrc.h \ | |
58 | network_agent.h \ | |
59 | ntstat.h \ | |
60 | packet_mangler.h \ | |
61 | pfkeyv2.h \ | |
62 | pfvar.h \ | |
63 | pktap.h \ | |
64 | ppp_defs.h \ | |
65 | radix.h \ | |
66 | raw_cb.h \ | |
67 | route.h \ | |
39037602 A |
68 | net_perf.h \ |
69 | net_kev.h | |
91447636 | 70 | |
39236c6e | 71 | PRIVATE_KERNELFILES = $(filter-out radix.h,${KERNELFILES}) \ |
316670eb | 72 | bpfdesc.h ppp_comp.h \ |
6d2010ae | 73 | zlib.h bpf_compat.h net_osdep.h \ |
3e170ce0 | 74 | flowadv.h net_perf.h |
1c79356b A |
75 | |
76 | INSTALL_MI_LIST = ${DATAFILES} | |
77 | ||
78 | INSTALL_MI_DIR = net | |
79 | ||
91447636 | 80 | EXPORT_MI_LIST = ${INSTALL_MI_LIST} ${KERNELFILES} |
1c79356b | 81 | |
9bccf70c | 82 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} |
1c79356b | 83 | |
3e170ce0 | 84 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
9bccf70c | 85 | |
3e170ce0 | 86 | INSTALL_KF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES} ${PRIVATE_KERNELFILES}) |
1c79356b A |
87 | |
88 | include $(MakeInc_rule) | |
89 | include $(MakeInc_dir) |