annotate mcabber/modules/fifo/Makefile.am @ 2088:a18e1b488f1c

Fix Makefile.am of fifo module
author franky
date Fri, 25 Oct 2013 22:20:23 +0200
parents 5c811b746026
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1941
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
1
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
2 if INSTALL_HEADERS
2079
8da280d34b48 Rename FIFO module file name
Mikael Berthe <mikael@lilotux.net>
parents: 2041
diff changeset
3
1941
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
4 pkglib_LTLIBRARIES = libfifo.la
2088
a18e1b488f1c Fix Makefile.am of fifo module
franky
parents: 2080
diff changeset
5 libfifo_la_SOURCES = fifo.c ../../mcabber/fifo_internal.c ../../mcabber/fifo.h
1941
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
6 libfifo_la_LDFLAGS = -module -avoid-version -shared
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
7
2256d0626730 Modularize fifo system (Myhailo Danylenko)
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: 1941
diff changeset
9 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
2079
8da280d34b48 Rename FIFO module file name
Mikael Berthe <mikael@lilotux.net>
parents: 2041
diff changeset
10 $(GLIB_CFLAGS) $(LOUDMOUTH_CFLAGS) \
8da280d34b48 Rename FIFO module file name
Mikael Berthe <mikael@lilotux.net>
parents: 2041
diff changeset
11 $(GPGME_CFLAGS) $(LIBOTR_CFLAGS) \
8da280d34b48 Rename FIFO module file name
Mikael Berthe <mikael@lilotux.net>
parents: 2041
diff changeset
12 $(ENCHANT_CFLAGS)
1941
2256d0626730 Modularize fifo system (Myhailo Danylenko)
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
13 endif