Annotation of embedaddon/quagga/zebra/Makefile.am, revision 1.1.1.2
1.1 misho 1: ## Process this file with automake to produce Makefile.in.
2:
1.1.1.2 ! misho 3: INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib
1.1 misho 4: DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" -DMULTIPATH_NUM=@MULTIPATH_NUM@
5: INSTALL_SDATA=@INSTALL@ -m 600
6:
7: LIB_IPV6 = @LIB_IPV6@
8: LIBCAP = @LIBCAP@
9:
10: ipforward = @IPFORWARD@
11: if_method = @IF_METHOD@
12: if_proc = @IF_PROC@
13: rt_method = @RT_METHOD@
14: rtread_method = @RTREAD_METHOD@
15: kernel_method = @KERNEL_METHOD@
16: other_method = @OTHER_METHOD@
17: ioctl_method = @IOCTL_METHOD@
18:
19: otherobj = $(ioctl_method) $(ipforward) $(if_method) $(if_proc) \
20: $(rt_method) $(rtread_method) $(kernel_method) $(other_method)
21:
1.1.1.2 ! misho 22: if HAVE_NETLINK
! 23: othersrc = zebra_fpm_netlink.c
! 24: endif
! 25:
1.1 misho 26: AM_CFLAGS = $(PICFLAGS)
27: AM_LDFLAGS = $(PILDFLAGS)
28:
29: sbin_PROGRAMS = zebra
30:
31: noinst_PROGRAMS = testzebra
32:
33: zebra_SOURCES = \
34: zserv.c main.c interface.c connected.c zebra_rib.c zebra_routemap.c \
35: redistribute.c debug.c rtadv.c zebra_snmp.c zebra_vty.c \
1.1.1.2 ! misho 36: irdp_main.c irdp_interface.c irdp_packet.c router-id.c zebra_fpm.c \
! 37: $(othersrc)
1.1 misho 38:
39: testzebra_SOURCES = test_main.c zebra_rib.c interface.c connected.c debug.c \
40: zebra_vty.c \
41: kernel_null.c redistribute_null.c ioctl_null.c misc_null.c
42:
43: noinst_HEADERS = \
44: connected.h ioctl.h rib.h rt.h zserv.h redistribute.h debug.h rtadv.h \
1.1.1.2 ! misho 45: interface.h ipforward.h irdp.h router-id.h kernel_socket.h \
! 46: rt_netlink.h zebra_fpm.h zebra_fpm_private.h
1.1 misho 47:
1.1.1.2 ! misho 48: zebra_LDADD = $(otherobj) ../lib/libzebra.la $(LIBCAP) $(LIB_IPV6)
1.1 misho 49:
1.1.1.2 ! misho 50: testzebra_LDADD = ../lib/libzebra.la $(LIBCAP) $(LIB_IPV6)
1.1 misho 51:
52: zebra_DEPENDENCIES = $(otherobj)
53:
54: EXTRA_DIST = if_ioctl.c if_ioctl_solaris.c if_netlink.c if_proc.c \
55: if_sysctl.c ipforward_aix.c ipforward_ews.c ipforward_proc.c \
56: ipforward_solaris.c ipforward_sysctl.c rt_ioctl.c rt_netlink.c \
57: rt_socket.c rtread_netlink.c rtread_proc.c rtread_sysctl.c \
58: rtread_getmsg.c kernel_socket.c kernel_netlink.c mtu_kvm.c \
59: ioctl.c ioctl_solaris.c \
60: GNOME-SMI GNOME-PRODUCT-ZEBRA-MIB
61:
62: #client : client_main.o ../lib/libzebra.la
63: # $(CC) -g -o client client_main.o ../liblzebra.la $(LIBS) $(LIB_IPV6)
64:
65: quaggaconfdir = $(sysconfdir)
66:
67: examplesdir = $(exampledir)
68: dist_examples_DATA = zebra.conf.sample
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>