diff options
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/dcc/Makefile.am | 7 | ||||
-rw-r--r-- | src/irc/flood/Makefile.am | 7 | ||||
-rw-r--r-- | src/irc/notifylist/Makefile.am | 7 | ||||
-rw-r--r-- | src/irc/proxy/Makefile.am | 5 |
4 files changed, 7 insertions, 19 deletions
diff --git a/src/irc/dcc/Makefile.am b/src/irc/dcc/Makefile.am index a1f07c7d..d59aa043 100644 --- a/src/irc/dcc/Makefile.am +++ b/src/irc/dcc/Makefile.am @@ -1,12 +1,9 @@ -moduledir = $(libdir)/irssi/modules -module_LTLIBRARIES = libirc_dcc.la - -libirc_dcc_la_LDFLAGS = -avoid-version +noinst_LIBRARIES = libirc_dcc.a INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ -libirc_dcc_la_SOURCES = \ +libirc_dcc_a_SOURCES = \ dcc.c \ dcc-chat.c \ dcc-get.c \ diff --git a/src/irc/flood/Makefile.am b/src/irc/flood/Makefile.am index 1424380d..2891842b 100644 --- a/src/irc/flood/Makefile.am +++ b/src/irc/flood/Makefile.am @@ -1,12 +1,9 @@ -moduledir = $(libdir)/irssi/modules -module_LTLIBRARIES = libirc_flood.la - -libirc_flood_la_LDFLAGS = -avoid-version +noinst_LIBRARIES = libirc_flood.a INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ -libirc_flood_la_SOURCES = \ +libirc_flood_a_SOURCES = \ autoignore.c \ flood.c diff --git a/src/irc/notifylist/Makefile.am b/src/irc/notifylist/Makefile.am index 1abbeb66..a5fb387e 100644 --- a/src/irc/notifylist/Makefile.am +++ b/src/irc/notifylist/Makefile.am @@ -1,12 +1,9 @@ -moduledir = $(libdir)/irssi/modules -module_LTLIBRARIES = libirc_notifylist.la - -libirc_notifylist_la_LDFLAGS = -avoid-version +noinst_LIBRARIES = libirc_notifylist.a INCLUDES = $(GLIB_CFLAGS) \ -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ -libirc_notifylist_la_SOURCES = \ +libirc_notifylist_a_SOURCES = \ notifylist.c \ notify-commands.c \ notify-ison.c \ diff --git a/src/irc/proxy/Makefile.am b/src/irc/proxy/Makefile.am index a8259c7f..f9c07c5e 100644 --- a/src/irc/proxy/Makefile.am +++ b/src/irc/proxy/Makefile.am @@ -1,7 +1,4 @@ -moduledir = $(libdir)/irssi/modules -module_LTLIBRARIES = libproxy.la - -libproxy_la_LDFLAGS = -avoid-version +noinst_LTLIBRARIES = libproxy.la INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \ -I$(top_srcdir)/src/irc/core/ |