aboutsummaryrefslogtreecommitdiffstats
path: root/em-format
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-07-13 21:33:38 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-07-13 21:33:38 +0800
commitf425fdc8e2a68fe6fece41ee0684ced30cebc1ed (patch)
tree91c5da26d2aa04b4281eec841a7b475c372527e8 /em-format
parent0d6061a4ebf34cbe4f640e755372c38bd698ed25 (diff)
downloadgsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.gz
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.bz2
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.lz
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.xz
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.zst
gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.zip
Fix some issues when building Anjal.
Diffstat (limited to 'em-format')
-rw-r--r--em-format/Makefile.am27
1 files changed, 16 insertions, 11 deletions
diff --git a/em-format/Makefile.am b/em-format/Makefile.am
index 2c758d068e..360ceac7c2 100644
--- a/em-format/Makefile.am
+++ b/em-format/Makefile.am
@@ -1,22 +1,27 @@
+emformatincludedir = $(privincludedir)/em-format
+
AM_CPPFLAGS = \
-I$(top_srcdir) \
$(EVOLUTION_MAIL_CFLAGS)
-noinst_LTLIBRARIES = libemformat.la
+privsolib_LTLIBRARIES = libemformat.la
-libemformat_la_SOURCES = \
- em-format.h \
- em-format.c \
- em-format-quote.h \
- em-format-quote.c \
- em-stripsig-filter.c \
+emformatinclude_HEADERS = \
+ em-format.h \
+ em-format-quote.h \
em-stripsig-filter.h
-libemformat_la_LDFLAGS = -avoid-version $(NO_UNDEFINED)
+libemformat_la_SOURCES = \
+ $(emformatinclude_HEADERS) \
+ em-format.c \
+ em-format-quote.c \
+ em-stripsig-filter.c
+
+libemformat_la_LDFLAGS = $(NO_UNDEFINED)
-libemformat_la_LIBADD = \
- $(top_builddir)/e-util/libeutil.la \
- $(top_builddir)/shell/libeshell.la \
+libemformat_la_LIBADD = \
+ $(top_builddir)/e-util/libeutil.la \
+ $(top_builddir)/shell/libeshell.la \
$(EVOLUTION_MAIL_LIBS)
-include $(top_srcdir)/git.mk