~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to backends/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-03-17 01:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020317015139-z4f8fdg1hoe049g0
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES= -I$(top_srcdir) -I$(top_builddir) -I$(top_builddir)/gconf \
 
2
        $(GLIB_CFLAGS) $(OAF_CFLAGS) $(ORBIT_CFLAGS) $(XML_CFLAGS) \
 
3
        -DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"
 
4
 
 
5
EXTRA_DIST=README.bdb
 
6
 
 
7
backenddir = $(pkglibdir)/$(MAJOR_VERSION)
 
8
 
 
9
if BDB
 
10
BDBBACKEND=libgconfbackend-bdb.la
 
11
else
 
12
BDBBACKEND=
 
13
endif
 
14
 
 
15
backend_LTLIBRARIES = libgconfbackend-xml.la $(BDBBACKEND)
 
16
 
 
17
libgconfbackend_xml_la_SOURCES = \
 
18
        xml-cache.h             \
 
19
        xml-cache.c             \
 
20
        xml-dir.h               \
 
21
        xml-dir.c               \
 
22
        xml-entry.h             \
 
23
        xml-entry.c             \
 
24
        xml-backend.c
 
25
 
 
26
libgconfbackend_xml_la_LDFLAGS = -avoid-version -module
 
27
libgconfbackend_xml_la_LIBADD  = $(GLIB_LIBS) $(XML_LIBS)
 
28
 
 
29
libgconfbackend_bdb_la_SOURCES = bdb.c bdb.h bdb-backend.c val-encode.c val-encode.h dir-utils.c dir-utils.h
 
30
 
 
31
 
 
32
libgconfbackend_bdb_la_LDFLAGS = -avoid-version -module
 
33
libgconfbackend_bdb_la_LIBADD = $(GLIB_LIBS) $(BDB_LIBS)