OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [net/] [ipv4/] [Makefile] - Blame information for rev 1765

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 199 simons
#
2
# Makefile for the Linux TCP/IP (INET) layer.
3
#
4
# Note! Dependencies are done automagically by 'make dep', which also
5
# removes any old dependencies. DON'T put your own dependencies here
6
# unless it's something special (ie not a .c file).
7
#
8
# Note 2! The CFLAGS definition is now in the main makefile...
9
 
10
O_TARGET := ipv4.o
11
IPV4_OBJS := utils.o route.o proc.o timer.o protocol.o packet.o \
12
             ip_input.o ip_fragment.o ip_forward.o ip_options.o \
13
             ip_output.o ip_sockglue.o \
14
             tcp.o tcp_input.o tcp_output.o tcp_timer.o \
15
             raw.o udp.o arp.o icmp.o devinet.o af_inet.o igmp.o ip_fw.o \
16
             sysctl_net_ipv4.o
17
 
18
MOD_LIST_NAME := IPV4_MODULES
19
M_OBJS :=
20
 
21
ifeq ($(CONFIG_IP_MROUTE),y)
22
IPV4_OBJS += ipmr.o
23
endif
24
 
25
ifeq ($(CONFIG_INET_RARP),y)
26
IPV4_OBJS += rarp.o
27
else
28
  ifeq ($(CONFIG_INET_RARP),m)
29
  M_OBJS += rarp.o
30
  endif
31
endif
32
 
33
ifeq ($(CONFIG_NET_IPIP),y)
34
IPV4_OBJS += ipip.o
35
else
36
  ifeq ($(CONFIG_NET_IPIP),m)
37
  M_OBJS += ipip.o
38
  endif
39
endif
40
 
41
ifeq ($(CONFIG_IP_MASQUERADE),y)
42
IPV4_OBJS += ip_masq.o ip_masq_app.o
43
ifeq ($(CONFIG_UCLINUX),y)
44
  IPV4_OBJS += ip_masq_ftp.o ip_masq_irc.o ip_masq_raudio.o ip_masq_cuseeme.o
45
  IPV4_OBJS += ip_masq_vdolive.o ip_masq_quake.o
46
else
47
  M_OBJS += ip_masq_ftp.o ip_masq_irc.o ip_masq_raudio.o ip_masq_cuseeme.o
48
  M_OBJS += ip_masq_vdolive.o ip_masq_quake.o
49
endif
50
endif
51
 
52
ifeq ($(CONFIG_IP_ALIAS),y)
53
IPV4_OBJS += ip_alias.o
54
else
55
  ifeq ($(CONFIG_IP_ALIAS),m)
56
  M_OBJS += ip_alias.o
57
  endif
58
endif
59
 
60
ifdef CONFIG_INET
61
O_OBJS := $(IPV4_OBJS)
62
endif
63
 
64
include $(TOPDIR)/Rules.make
65
 
66
tar:
67
                tar -cvf /dev/f1 .

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.