mirror of
https://github.com/irssi/irssi.git
synced 2025-04-25 20:41:23 -05:00
configure automake with nostdinc (cherry picked from commit 95f131da2d741f4ad13c2c045253dc2b80b03f40)
30 lines
532 B
Makefile
30 lines
532 B
Makefile
moduledir = $(libdir)/irssi/modules
|
|
module_LTLIBRARIES = libirc_proxy.la
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/core/ \
|
|
-I$(top_srcdir)/src/irc/core/ \
|
|
$(GLIB_CFLAGS)
|
|
|
|
libirc_proxy.a:
|
|
rm -f libirc_proxy.a
|
|
$(LN_S) .libs/libirc_proxy.a libirc_proxy.a
|
|
|
|
libirc_proxy_la_LDFLAGS = -module -avoid-version
|
|
|
|
libirc_proxy_la_DEPENDENCIES = libirc_proxy.a
|
|
|
|
libirc_proxy_la_SOURCES = \
|
|
proxy.c \
|
|
dump.c \
|
|
listen.c
|
|
|
|
noinst_HEADERS = \
|
|
module.h \
|
|
proxy.h
|
|
|
|
clean-generic:
|
|
rm -f libirc_proxy.a
|