annotate mcabber/modules/beep/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 c059c5c98de6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1671
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
1
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
2 if INSTALL_HEADERS
1829
c059c5c98de6 Update beep module coding style
Mikael Berthe <mikael@lilotux.net>
parents: 1690
diff changeset
3
1671
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
4 pkglib_LTLIBRARIES = libbeep.la
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
5 libbeep_la_SOURCES = beep.c
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
6 libbeep_la_LDFLAGS = -module -avoid-version -shared
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
7
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
8 LDADD = $(GLIB_LIBS)
2041
e8f2db654e67 Fix building from separate directory
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1829
diff changeset
9 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
e8f2db654e67 Fix building from separate directory
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1829
diff changeset
10 $(GLIB_CFLAGS) $(LOUDMOUTH_CFLAGS) \
1829
c059c5c98de6 Update beep module coding style
Mikael Berthe <mikael@lilotux.net>
parents: 1690
diff changeset
11 $(GPGME_CFLAGS) $(LIBOTR_CFLAGS) \
c059c5c98de6 Update beep module coding style
Mikael Berthe <mikael@lilotux.net>
parents: 1690
diff changeset
12 $(ENCHANT_CFLAGS)
1690
46f1cf3b6373 Fix modules include flags (reported by nixtrian)
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1671
diff changeset
13
1671
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
14 endif
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
15