comment/Makefile.am
author Mikael Berthe <mikael@lilotux.net>
Sun, 07 Mar 2010 15:16:31 +0100
changeset 3 7df50d56fbdd
parent 1 99fd216641d8
child 4 807420cf8002
permissions -rw-r--r--
Fix modules' Makefiles
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
if INSTALL_HEADERS
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
pkglib_LTLIBRARIES = libcomment.la
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
libcomment_la_SOURCES = comment.c
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
libcomment_la_LDFLAGS = -module -avoid-version -shared
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
3
7df50d56fbdd Fix modules' Makefiles
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
     7
LDADD = $(GLIB_LIBS) $(MCABBER_LIBS)
7df50d56fbdd Fix modules' Makefiles
Mikael Berthe <mikael@lilotux.net>
parents: 1
diff changeset
     8
AM_CPPFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(MCABBER_CFLAGS)
1
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
99fd216641d8 Add module "comment", autotools stuff...
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
    10
endif