File: Makefile.am

package info (click to toggle)
gconf 1.0.9-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,716 kB
  • ctags: 2,307
  • sloc: ansic: 60,480; sh: 9,208; makefile: 303
file content (33 lines) | stat: -rw-r--r-- 869 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
INCLUDES= -I$(top_srcdir) -I$(top_builddir) -I$(top_builddir)/gconf \
	$(GLIB_CFLAGS) $(OAF_CFLAGS) $(ORBIT_CFLAGS) $(XML_CFLAGS) \
	-DGCONF_ENABLE_INTERNALS=1 -DG_LOG_DOMAIN=\"GConf-Backends\"

EXTRA_DIST=README.bdb

backenddir = $(pkglibdir)/$(MAJOR_VERSION)

if BDB
BDBBACKEND=libgconfbackend-bdb.la
else
BDBBACKEND=
endif

backend_LTLIBRARIES = libgconfbackend-xml.la $(BDBBACKEND)

libgconfbackend_xml_la_SOURCES = \
	xml-cache.h		\
	xml-cache.c		\
	xml-dir.h		\
	xml-dir.c		\
	xml-entry.h		\
	xml-entry.c		\
	xml-backend.c

libgconfbackend_xml_la_LDFLAGS = -avoid-version -module
libgconfbackend_xml_la_LIBADD  = $(GLIB_LIBS) $(XML_LIBS)

libgconfbackend_bdb_la_SOURCES = bdb.c bdb.h bdb-backend.c val-encode.c val-encode.h dir-utils.c dir-utils.h


libgconfbackend_bdb_la_LDFLAGS = -avoid-version -module
libgconfbackend_bdb_la_LIBADD = $(GLIB_LIBS) $(BDB_LIBS)