mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
15 lines
274 B
Makefile
15 lines
274 B
Makefile
|
moduledir = $(libdir)/irssi/modules
|
||
|
module_LTLIBRARIES = libproxy.la
|
||
|
|
||
|
INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
|
||
|
-I$(top_srcdir)/src/irc/core/
|
||
|
|
||
|
libproxy_la_SOURCES = \
|
||
|
proxy.c \
|
||
|
dump.c \
|
||
|
listen.c \
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
proxy.h \
|
||
|
module.h
|