2001-05-31 Christopher James Lahey <clahey@ximian.com> * README: Included information about db3. * acconfig.h: Added HAVE_DB_H and HAVE_DB3_DB_H. * configure.in: Added various checks for db3 libraries and includes. Of note are the new configure options --with-db3-includes=PREFIX and --with-db3-libs=PREFIX to specify the location for your db3 library. From addressbook/ChangeLog: 2001-05-31 Christopher James Lahey <clahey@ximian.com> * backend/pas/Makefile.am (INCLUDES): Added db3 cflags. * backend/pas/pas-backend-file.c: Updated this to use db3. From e-util/ChangeLog: 2001-05-31 Christopher James Lahey <clahey@ximian.com> * Makefile.am (INCLUDES): Added db3 cflags. * e-dbhash.c: Made this use db3. * e-db3-utils.c, e-db3-utils.h: New files with some helper functions. From wombat/ChangeLog: 2001-05-31 Christopher James Lahey <clahey@ximian.com> * Makefile.am (wombat_LDADD): Added db3 libs. svn path=/trunk/; revision=10077
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"wombat\" \
|
|
-I$(top_srcdir)/e-util \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/addressbook/backend \
|
|
-I$(top_builddir)/addressbook/backend \
|
|
-I$(top_srcdir)/calendar \
|
|
-I$(top_srcdir)/calendar/pcs \
|
|
-I$(top_builddir)/calendar/pcs \
|
|
-I$(top_srcdir)/libical/src/libical \
|
|
-I$(top_builddir)/libical/src/libical \
|
|
$(GNOME_INCLUDEDIR) \
|
|
$(BONOBO_VFS_GNOME_CFLAGS) \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\"
|
|
|
|
bin_PROGRAMS = \
|
|
wombat
|
|
|
|
wombat_SOURCES = \
|
|
wombat-moniker.c \
|
|
wombat-moniker.h \
|
|
wombat.c
|
|
|
|
wombat_LDADD = \
|
|
$(top_builddir)/addressbook/backend/pas/libpas.a \
|
|
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
|
$(top_builddir)/e-util/ename/libename.la \
|
|
$(top_builddir)/calendar/pcs/libpcs.a \
|
|
$(top_builddir)/calendar/cal-util/libcal-util.la \
|
|
$(top_builddir)/libical/src/libical/libical.la \
|
|
$(top_builddir)/libversit/libversit.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(LDAP_LIBS) \
|
|
$(DB3_LDADD) \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(BONOBO_VFS_GNOME_LIBS)
|
|
|
|
oafdir = $(datadir)/oaf
|
|
|
|
oaf_in_files = GNOME_Evolution_Wombat.oaf.in
|
|
oaf_DATA = $(oaf_in_files:.oaf.in=.oaf)
|
|
|
|
@XML_I18N_MERGE_OAF_RULE@
|
|
|
|
|
|
EXTRA_DIST = $(oaf_DATA) $(oaf_in_files)
|
|
|
|
if ENABLE_PURIFY
|
|
PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
all-local: wombat.pure
|
|
|
|
wombat.pure: wombat
|
|
@rm -f wombat.pure
|
|
$(PLINK) $(wombat_LDFLAGS) $(wombat_OBJECTS) $(wombat_LDADD) $(LIBS)
|
|
|
|
endif
|