extsay/Makefile.am
author Mikael Berthe <mikael@lilotux.net>
Sun, 07 Mar 2010 19:11:38 +0100
changeset 4 807420cf8002
parent 3 7df50d56fbdd
permissions -rw-r--r--
More autotools stuff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
4
807420cf8002 More autotools stuff
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     2
if INSTALL_MODULE_EXTSAY
807420cf8002 More autotools stuff
Mikael Berthe <mikael@lilotux.net>
parents: 3
diff changeset
     3
0
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
pkglib_LTLIBRARIES = libextsay.la
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
libextsay_la_SOURCES = extsay.c
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
libextsay_la_LDFLAGS = -module -avoid-version -shared
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
3
7df50d56fbdd Fix modules' Makefiles
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
     8
LDADD = $(GLIB_LIBS) $(MCABBER_LIBS)
7df50d56fbdd Fix modules' Makefiles
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
     9
AM_CPPFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(MCABBER_CFLAGS)
0
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
d6d9e95a4ae5 Initial module repository
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    11
endif