diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-13 21:33:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-13 21:33:38 +0800 |
commit | f425fdc8e2a68fe6fece41ee0684ced30cebc1ed (patch) | |
tree | 91c5da26d2aa04b4281eec841a7b475c372527e8 /em-format | |
parent | 0d6061a4ebf34cbe4f640e755372c38bd698ed25 (diff) | |
download | gsoc2013-evolution-f425fdc8e2a68fe6fece41ee0684ced30cebc1ed.tar.gz 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.am | 27 |
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 |