annotate mcabber/modules/xttitle/Makefile.am @ 2041:e8f2db654e67

Fix building from separate directory This patch allows the following build sequence: $ mkdir build; cd build; ../configure args; make; make install
author Myhailo Danylenko <isbear@ukrpost.net>
date Thu, 22 Nov 2012 00:59:19 +0200
parents a2642e56e0de
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1827
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
1
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
2 if INSTALL_HEADERS
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
3
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
4 pkglib_LTLIBRARIES = libxttitle.la
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
5 libxttitle_la_SOURCES = xttitle.c
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
6 libxttitle_la_LDFLAGS = -module -avoid-version -shared
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
7
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
8 LDADD = $(GLIB_LIBS)
2041
e8f2db654e67 Fix building from separate directory
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1827
diff changeset
9 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
e8f2db654e67 Fix building from separate directory
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1827
diff changeset
10 $(GLIB_CFLAGS) $(LOUDMOUTH_CFLAGS) \
1827
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
11 $(GPGME_CFLAGS) $(LIBOTR_CFLAGS) $(ENCHANT_CFLAGS)
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
12
a2642e56e0de Add xttitle module
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
13 endif