mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
rest of the ~rewrite?
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@172 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c95034c6de
commit
d29ca0b107
32 changed files with 2049 additions and 1536 deletions
30
src/perl/Makefile.am
Normal file
30
src/perl/Makefile.am
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
noinst_LTLIBRARIES = libperl.la
|
||||
|
||||
libperl_la_DEPENDENCIES = perl-signals.h
|
||||
|
||||
INCLUDES = $(GLIB_CFLAGS) \
|
||||
-DPLUGINSDIR=\""$(libdir)/irssi/plugins"\" \
|
||||
-DSCRIPTDIR=\""$(libdir)/irssi/scripts"\" \
|
||||
$(PERL_CFLAGS) \
|
||||
-I$(top_srcdir)/src \
|
||||
-I$(top_srcdir)/src/core
|
||||
|
||||
libperl_la_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.xs \
|
||||
xs/Irssi.pm \
|
||||
xs/Makefile.PL.in \
|
||||
xs/typemap
|
||||
|
||||
all-local:
|
||||
cd xs && if [ ! -f Makefile ]; then $(perlpath) Makefile.PL; fi && $(MAKE) && cd ..
|
||||
|
||||
install-exec-local:
|
||||
cd xs && make install && cd ..
|
||||
Loading…
Add table
Add a link
Reference in a new issue