]> git.proxmox.com Git - mirror_frr.git/blame - ripngd/Makefile.am
2003-06-04 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / ripngd / Makefile.am
CommitLineData
718e3744 1## Process this file with automake to produce Makefile.in.
2
3INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib
4DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
5INSTALL_SDATA=@INSTALL@ -m 600
6
7noinst_LIBRARIES = libripng.a
8sbin_PROGRAMS = ripngd
9
10libripng_a_SOURCES = \
11 ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
a94434b6 12 ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
718e3744 13
14noinst_HEADERS = \
0b24b4c7 15 ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
718e3744 16
17ripngd_SOURCES = \
18 ripng_main.c $(libripng_a_SOURCES)
19
edd7c245 20ripngd_LDADD = -L../lib -lzebra @LIBCAP@
718e3744 21
22sysconf_DATA = ripngd.conf.sample
23
24EXTRA_DIST = $(sysconf_DATA)
25
26install-sysconfDATA: $(sysconf_DATA)
27 @$(NORMAL_INSTALL)
28 $(mkinstalldirs) $(DESTDIR)$(sysconfdir)
29 @list='$(sysconf_DATA)'; for p in $$list; do \
30 if test -f $(srcdir)/$$p; then \
31 echo " $(INSTALL_SDATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p"; \
32 $(INSTALL_SDATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p; \
33 else if test -f $$p; then \
34 echo " $(INSTALL_SDATA) $$p $(DESTDIR)$(sysconfdir)/$$p"; \
35 $(INSTALL_SDATA) $$p $(DESTDIR)$(sysconfdir)/$$p; \
36 fi; fi; \
37 done