]>
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 | ||
1c79356b | 9 | DATAFILES = \ |
91447636 A |
10 | bootp.h icmp6.h if_ether.h icmp_var.h \ |
11 | igmp.h igmp_var.h in.h in_pcb.h \ | |
12 | in_systm.h in_var.h ip.h ip6.h \ | |
fe8ab488 | 13 | ip_icmp.h ip_var.h tcp.h \ |
91447636 | 14 | tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h \ |
1c79356b A |
15 | tcpip.h udp.h udp_var.h |
16 | ||
91447636 A |
17 | KERNELFILES = \ |
18 | kpi_ipfilter.h in_arp.h | |
19 | ||
9bccf70c | 20 | PRIVATE_DATAFILES = \ |
3e170ce0 A |
21 | flow_divert_proto.h \ |
22 | igmp_var.h \ | |
23 | in.h \ | |
24 | in_gif.h \ | |
25 | in_pcb.h \ | |
39037602 | 26 | in_tclass.h \ |
3e170ce0 A |
27 | ip.h \ |
28 | ip_compat.h \ | |
6d2010ae | 29 | ip_dummynet.h \ |
316670eb | 30 | ip_flowid.h \ |
3e170ce0 A |
31 | ip_fw.h \ |
32 | ip_fw2.h \ | |
33 | mptcp_var.h \ | |
34 | tcp.h \ | |
cb323159 | 35 | tcp_cc.h \ |
91447636 | 36 | tcp_debug.h \ |
3e170ce0 A |
37 | tcp_var.h \ |
38 | tcp_cache.h \ | |
5ba3f43e A |
39 | udp.h \ |
40 | in_stat.h | |
91447636 A |
41 | |
42 | PRIVATE_KERNELFILES = ${KERNELFILES} \ | |
cb323159 | 43 | ip_ecn.h ip_encap.h tcp_log.h |
9bccf70c | 44 | |
1c79356b A |
45 | INSTALL_MI_LIST = ${DATAFILES} |
46 | ||
47 | INSTALL_MI_DIR = netinet | |
48 | ||
3e170ce0 | 49 | EXPORT_MI_LIST = ${DATAFILES} ${KERNELFILES} |
1c79356b | 50 | |
91447636 | 51 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} |
1c79356b | 52 | |
3e170ce0 A |
53 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
54 | INSTALL_KF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES} ${PRIVATE_KERNELFILES}) | |
1c79356b A |
55 | |
56 | include $(MakeInc_rule) | |
57 | include $(MakeInc_dir) |