mcabber/modules/beep/Makefile.am
author Myhailo Danylenko <isbear@ukrpost.net>
Sat, 13 Mar 2010 22:25:20 +0200
changeset 1770 d3168cd64d59
parent 1690 46f1cf3b6373
child 1829 c059c5c98de6
permissions -rw-r--r--
Add API version to module description
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     3
pkglib_LTLIBRARIES = libbeep.la
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     4
libbeep_la_SOURCES = beep.c
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     5
libbeep_la_LDFLAGS = -module -avoid-version -shared
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     6
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     7
LDADD = $(GLIB_LIBS)
1690
46f1cf3b6373 Fix modules include flags (reported by nixtrian)
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1671
diff changeset
     8
AM_CPPFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(LOUDMOUTH_CFLAGS) \
46f1cf3b6373 Fix modules include flags (reported by nixtrian)
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1671
diff changeset
     9
				$(GPGME_CFLAGS) $(LIBOTR_CFLAGS) \
46f1cf3b6373 Fix modules include flags (reported by nixtrian)
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1671
diff changeset
    10
				$(ENCHANT_CFLAGS)
46f1cf3b6373 Fix modules include flags (reported by nixtrian)
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1671
diff changeset
    11
1671
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    12
endif
411269409f34 Add in-tree beep example module
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    13