root/net/ipv4/Makefile

/* [previous][next][first][last][top][bottom][index][help] */
#
# Makefile for the Linux TCP/IP (INET) layer.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := ipv4.o
IPV4_OBJS       := utils.o route.o proc.o timer.o protocol.o packet.o \
                   arp.o ip.o raw.o icmp.o tcp.o udp.o devinet.o af_inet.o \
                   igmp.o ip_fw.o ipip.o ipmr.o

ifeq ($(CONFIG_INET_RARP),y)
IPV4_OBJS := $(IPV4_OBJS) rarp.o
else
  ifeq ($(CONFIG_INET_RARP),m)
    M_OBJS := rarp.o
    MOD_LIST_NAME := IPV4_MODULES
   endif
endif

ifdef CONFIG_INET
O_OBJS := $(IPV4_OBJS)
endif

include $(TOPDIR)/Rules.make

tar:
                tar -cvf /dev/f1 .

/* [previous][next][first][last][top][bottom][index][help] */