1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00
irssi/src/perl/Makefile.am

50 lines
1.1 KiB
Makefile
Raw Normal View History

noinst_LIBRARIES = libperl.a
irssi-perl.c: perl-signals.h
INCLUDES = $(GLIB_CFLAGS) \
-DSCRIPTDIR=\""$(libdir)/irssi/scripts"\" \
$(PERL_CFLAGS) \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core
libperl_a_SOURCES = \
irssi-perl.c \
xsinit.c
perl-signals.h: $(top_srcdir)/docs/signals.txt $(srcdir)/get-signals.pl
cat $(top_srcdir)/docs/signals.txt | $(perlpath) $(srcdir)/get-signals.pl > perl-signals.h
EXTRA_DIST = \
get-signals.pl \
xs/Irssi-bans.xs \
xs/Irssi-channel.xs \
xs/Irssi-core.xs \
xs/Irssi-dcc.xs \
xs/Irssi-flood.xs \
xs/Irssi-ignore.xs \
xs/Irssi-log.xs \
xs/Irssi-masks.xs \
xs/Irssi-modes.xs \
xs/Irssi-netsplit.xs \
xs/Irssi-notifylist.xs \
xs/Irssi-query.xs \
xs/Irssi-rawlog.xs \
xs/Irssi-server.xs \
xs/Irssi-settings.xs \
xs/Irssi-window.xs \
xs/Irssi.xs \
xs/Irssi.pm \
xs/Makefile.PL.in \
xs/typemap
noinst_HEADERS = \
module.h \
xs/module.h
all-local:
cd xs && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR); fi; fi && $(MAKE) && cd ..
install-exec-local:
cd xs && make install && cd ..