diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/ipv4/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/ipv4/Makefile')
-rw-r--r-- | net/ipv4/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile new file mode 100644 index 000000000000..8b379627ebb6 --- /dev/null +++ b/net/ipv4/Makefile | |||
@@ -0,0 +1,33 @@ | |||
1 | # | ||
2 | # Makefile for the Linux TCP/IP (INET) layer. | ||
3 | # | ||
4 | |||
5 | obj-y := utils.o route.o inetpeer.o protocol.o \ | ||
6 | ip_input.o ip_fragment.o ip_forward.o ip_options.o \ | ||
7 | ip_output.o ip_sockglue.o \ | ||
8 | tcp.o tcp_input.o tcp_output.o tcp_timer.o tcp_ipv4.o tcp_minisocks.o \ | ||
9 | datagram.o raw.o udp.o arp.o icmp.o devinet.o af_inet.o igmp.o \ | ||
10 | sysctl_net_ipv4.o fib_frontend.o fib_semantics.o fib_hash.o | ||
11 | |||
12 | obj-$(CONFIG_PROC_FS) += proc.o | ||
13 | obj-$(CONFIG_IP_MULTIPLE_TABLES) += fib_rules.o | ||
14 | obj-$(CONFIG_IP_MROUTE) += ipmr.o | ||
15 | obj-$(CONFIG_NET_IPIP) += ipip.o | ||
16 | obj-$(CONFIG_NET_IPGRE) += ip_gre.o | ||
17 | obj-$(CONFIG_SYN_COOKIES) += syncookies.o | ||
18 | obj-$(CONFIG_INET_AH) += ah4.o | ||
19 | obj-$(CONFIG_INET_ESP) += esp4.o | ||
20 | obj-$(CONFIG_INET_IPCOMP) += ipcomp.o | ||
21 | obj-$(CONFIG_INET_TUNNEL) += xfrm4_tunnel.o | ||
22 | obj-$(CONFIG_IP_PNP) += ipconfig.o | ||
23 | obj-$(CONFIG_IP_ROUTE_MULTIPATH_RR) += multipath_rr.o | ||
24 | obj-$(CONFIG_IP_ROUTE_MULTIPATH_RANDOM) += multipath_random.o | ||
25 | obj-$(CONFIG_IP_ROUTE_MULTIPATH_WRANDOM) += multipath_wrandom.o | ||
26 | obj-$(CONFIG_IP_ROUTE_MULTIPATH_DRR) += multipath_drr.o | ||
27 | obj-$(CONFIG_NETFILTER) += netfilter/ | ||
28 | obj-$(CONFIG_IP_VS) += ipvs/ | ||
29 | obj-$(CONFIG_IP_TCPDIAG) += tcp_diag.o | ||
30 | obj-$(CONFIG_IP_ROUTE_MULTIPATH_CACHED) += multipath.o | ||
31 | |||
32 | obj-$(CONFIG_XFRM) += xfrm4_policy.o xfrm4_state.o xfrm4_input.o \ | ||
33 | xfrm4_output.o | ||