~ubuntu-branches/ubuntu/breezy/quagga/breezy-security

« back to all changes in this revision

Viewing changes to ripngd/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-05-20 13:16:12 UTC
  • Revision ID: james.westby@ubuntu.com-20050520131612-pr6paalox60o3x3n
Tags: upstream-0.99.1
ImportĀ upstreamĀ versionĀ 0.99.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in.
 
2
 
 
3
INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib @SNMP_INCLUDES@
 
4
DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\"
 
5
INSTALL_SDATA=@INSTALL@ -m 600
 
6
 
 
7
noinst_LIBRARIES = libripng.a
 
8
sbin_PROGRAMS = ripngd
 
9
 
 
10
libripng_a_SOURCES = \
 
11
        ripng_interface.c ripngd.c ripng_zebra.c ripng_route.c ripng_debug.c \
 
12
        ripng_routemap.c ripng_offset.c ripng_peer.c ripng_nexthop.c
 
13
 
 
14
noinst_HEADERS = \
 
15
        ripng_debug.h ripng_route.h ripngd.h ripng_nexthop.h
 
16
 
 
17
ripngd_SOURCES = \
 
18
        ripng_main.c $(libripng_a_SOURCES)
 
19
 
 
20
ripngd_LDADD = ../lib/libzebra.la @LIBCAP@
 
21
 
 
22
examplesdir = $(exampledir)
 
23
dist_examples_DATA = ripngd.conf.sample
 
24