2007-06-20 Laszlo (Laca) Peter <laca@sun.com> * configure.in: make the path to perl configurable and add addressbook/tools/csv2vcard to AC_OUTPUT. Part of the fix for bug #433732 2007-06-20 Laszlo (Laca) Peter <laca@sun.com> ** Fix for bug #433732 * tools/Makefile.am: expand @PERL@ in evolution-addressbook-clean.in * tools/csv2vcard: rename to csv2vcard.in * tools/csv2vcard.in: make the path to perl configurable * tools/evolution-addressbook-clean.in: make the path to perl configurable svn path=/trunk/; revision=33711
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
privlibexec_SCRIPTS = \
|
|
csv2vcard \
|
|
evolution-addressbook-clean
|
|
|
|
privlibexec_PROGRAMS = \
|
|
evolution-addressbook-export
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"evolution-addressbook-tools\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-I$(top_srcdir)/addressbook \
|
|
-I$(top_builddir)/addressbook \
|
|
$(EVOLUTION_ADDRESSBOOK_CFLAGS)
|
|
|
|
evolution_addressbook_export_SOURCES = \
|
|
evolution-addressbook-export.c \
|
|
evolution-addressbook-export-list-cards.c \
|
|
evolution-addressbook-export-list-folders.c \
|
|
evolution-addressbook-export.h
|
|
|
|
evolution_addressbook_export_LDADD = \
|
|
$(EVOLUTION_ADDRESSBOOK_LIBS)
|
|
|
|
EXTRA_DIST = $(privlibexec_SCRIPTS) \
|
|
evolution-addressbook-clean.in
|
|
|
|
CLEANFILES= evolution-addressbook-clean
|
|
|
|
evolution-addressbook-clean: evolution-addressbook-clean.in Makefile
|
|
## Use sed and then mv to avoid problems if the user interrupts.
|
|
sed -e 's?\@EVOLUTION_TOOLSDIR\@?$(privlibexecdir)?g' \
|
|
-e 's?\@PERL\@?@PERL@?g' \
|
|
< $(srcdir)/evolution-addressbook-clean.in > evolution-addressbook-clean.tmp \
|
|
&& mv evolution-addressbook-clean.tmp evolution-addressbook-clean
|