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

« back to all changes in this revision

Viewing changes to ospfd/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@ $(LOCAL_OPTS) -DSYSCONFDIR=\"$(sysconfdir)/\"
 
5
INSTALL_SDATA=@INSTALL@ -m 600
 
6
 
 
7
lib_LTLIBRARIES = libospf.la
 
8
libospf_la_LDFLAGS = -version 0:0:0
 
9
 
 
10
sbin_PROGRAMS = ospfd
 
11
 
 
12
libospf_la_SOURCES = \
 
13
        ospfd.c ospf_zebra.c ospf_interface.c ospf_ism.c ospf_neighbor.c \
 
14
        ospf_nsm.c ospf_dump.c ospf_network.c ospf_packet.c ospf_lsa.c \
 
15
        ospf_spf.c ospf_route.c ospf_ase.c ospf_abr.c ospf_ia.c ospf_flood.c \
 
16
        ospf_lsdb.c ospf_asbr.c ospf_routemap.c ospf_snmp.c \
 
17
        ospf_opaque.c ospf_te.c ospf_vty.c ospf_api.c ospf_apiserver.c
 
18
 
 
19
ospfdheaderdir = $(pkgincludedir)/ospfd
 
20
 
 
21
ospfdheader_HEADERS = \
 
22
        ospf_api.h ospf_asbr.h ospf_dump.h ospf_lsa.h ospf_lsdb.h \
 
23
        ospf_nsm.h ospf_ism.h ospf_opaque.h ospfd.h
 
24
 
 
25
noinst_HEADERS = \
 
26
        ospf_interface.h ospf_neighbor.h ospf_network.h ospf_packet.h \
 
27
        ospf_zebra.h ospf_spf.h ospf_route.h ospf_ase.h ospf_abr.h ospf_ia.h \
 
28
        ospf_flood.h ospf_snmp.h ospf_te.h ospf_vty.h ospf_apiserver.h
 
29
 
 
30
ospfd_SOURCES = ospf_main.c
 
31
 
 
32
ospfd_LDADD = libospf.la ../lib/libzebra.la @LIBCAP@
 
33
 
 
34
EXTRA_DIST = OSPF-MIB.txt OSPF-TRAP-MIB.txt ChangeLog.opaque.txt
 
35
 
 
36
examplesdir = $(exampledir)
 
37
dist_examples_DATA = ospfd.conf.sample
 
38