1 #
2 # Makefile for the ATM Protocol Families.
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 include ../../.config
11
12 O_TARGET= atm.o
13
14 export-objs = common.o atm_misc.o raw.o resources.o ipcommon.o proc.o
15
16 multi-list = mpoa.o
17 mpoa-objs = mpc.o mpoa_caches.o mpoa_proc.o
18
19 obj-$(CONFIG_ATM) = addr.o pvc.o signaling.o svc.o common.o atm_misc.o raw.o resources.o
20
21 ifeq ($(CONFIG_ATM_CLIP),y)
22 obj-y += clip.o
23 NEED_IPCOM = ipcommon.o
24 endif
25
26 ifeq ($(CONFIG_NET_SCH_ATM),y)
27 NEED_IPCOM = ipcommon.o
28 endif
29
30 obj-y += $(NEED_IPCOM)
31
32 ifeq ($(CONFIG_PROC_FS),y)
33 obj-y += proc.o
34 endif
35
36 obj-$(CONFIG_ATM_LANE) += lec.o
37 obj-$(CONFIG_ATM_MPOA) += mpoa.o
38
39 include $(TOPDIR)/Rules.make
40
41 mpoa.o: $(mpoa-objs)
42 $(LD) -r -o mpoa.o $(mpoa-objs)
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.