]>
Commit | Line | Data |
---|---|---|
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 | include $(MakeInc_cmd) | |
7 | include $(MakeInc_def) | |
8 | ||
9 | INSTINC_SUBDIRS = \ | |
10 | altq classq pktsched | |
11 | ||
12 | DATAFILES= \ | |
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 \ | |
24 | if_utun.h \ | |
25 | kext_net.h \ | |
26 | ndrv.h \ | |
27 | pfkeyv2.h \ | |
28 | route.h \ | |
29 | net_kev.h | |
30 | ||
31 | KERNELFILES= \ | |
32 | kpi_interface.h kpi_interfacefilter.h kpi_protocol.h \ | |
33 | if_ether.h init.h radix.h | |
34 | ||
35 | PRIVATE_DATAFILES = \ | |
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_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 \ | |
68 | net_perf.h \ | |
69 | net_kev.h | |
70 | ||
71 | PRIVATE_KERNELFILES = $(filter-out radix.h,${KERNELFILES}) \ | |
72 | bpfdesc.h ppp_comp.h \ | |
73 | zlib.h bpf_compat.h net_osdep.h \ | |
74 | flowadv.h net_perf.h | |
75 | ||
76 | INSTALL_MI_LIST = ${DATAFILES} | |
77 | ||
78 | INSTALL_MI_DIR = net | |
79 | ||
80 | EXPORT_MI_LIST = ${INSTALL_MI_LIST} ${KERNELFILES} | |
81 | ||
82 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} | |
83 | ||
84 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} | |
85 | ||
86 | INSTALL_KF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES} ${PRIVATE_KERNELFILES}) | |
87 | ||
88 | include $(MakeInc_rule) | |
89 | include $(MakeInc_dir) |