Import 2.3.13
[davej-history.git] / net / packet / Makefile
blobcce16721d0933df8ee2ffa103fd292cde8c60b74
2 # Makefile for the packet AF.
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).
8 # Note 2! The CFLAGS definition is now in the main makefile...
10 O_TARGET := packet.o
11 MOD_LIST_NAME := NET_MISC_MODULES
13 O_OBJS :=
14 M_OBJS :=
16 ifeq ($(CONFIG_PACKET),y)
17 O_OBJS += af_packet.o
18 else
19 ifeq ($(CONFIG_PACKET), m)
20 M_OBJS += af_packet.o
21 endif
22 endif
24 include $(TOPDIR)/Rules.make