2000-09-07 17:55:58 -04:00
|
|
|
moduledir = $(libdir)/irssi/modules
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2002-02-10 09:01:25 -05:00
|
|
|
perl_dirs = common irc ui textui
|
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
module_LTLIBRARIES = $(perl_module_lib) $(perl_module_fe_lib)
|
|
|
|
noinst_LTLIBRARIES = $(perl_static_lib) $(perl_static_fe_lib)
|
2001-02-17 05:35:35 -05:00
|
|
|
EXTRA_LTLIBRARIES = \
|
2001-07-29 05:17:53 -04:00
|
|
|
libperl_core.la libfe_perl.la \
|
|
|
|
libperl_core_static.la libfe_perl_static.la
|
2000-10-03 19:54:56 -04:00
|
|
|
|
2005-03-06 13:43:39 -05:00
|
|
|
libperl_core_la_LDFLAGS = -module -avoid-version -rpath $(moduledir)
|
|
|
|
libfe_perl_la_LDFLAGS = -module -avoid-version -rpath $(moduledir)
|
2000-10-01 21:11:53 -04:00
|
|
|
|
2008-02-03 19:30:38 -05:00
|
|
|
perl-core.lo: irssi-core.pl.h
|
|
|
|
perl-signals.lo: perl-signals-list.h
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2014-06-21 11:37:28 -04:00
|
|
|
AM_CPPFLAGS = \
|
2001-11-05 09:48:03 -05:00
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/core \
|
|
|
|
-I$(top_srcdir)/src/fe-common/core \
|
|
|
|
$(GLIB_CFLAGS) \
|
2002-03-01 14:56:50 -05:00
|
|
|
-DSCRIPTDIR=\""$(datadir)/irssi/scripts"\" \
|
2001-07-30 18:10:11 -04:00
|
|
|
-DPERL_USE_LIB=\""$(PERL_USE_LIB)"\" \
|
2001-10-24 19:17:27 -04:00
|
|
|
-DPERL_STATIC_LIBS=$(PERL_STATIC_LIBS) \
|
2001-11-05 09:48:03 -05:00
|
|
|
$(PERL_CFLAGS)
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2000-10-03 19:54:56 -04:00
|
|
|
perl_sources = \
|
2001-07-29 05:17:53 -04:00
|
|
|
perl-core.c \
|
2000-10-01 16:48:48 -04:00
|
|
|
perl-common.c \
|
2001-01-03 02:34:12 -05:00
|
|
|
perl-signals.c \
|
2001-10-25 06:00:33 -04:00
|
|
|
perl-sources.c
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
perl_fe_sources = \
|
|
|
|
module-formats.c \
|
|
|
|
perl-fe.c
|
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
module.h \
|
2001-08-13 20:41:59 -04:00
|
|
|
module-fe.h \
|
2001-07-29 08:14:08 -04:00
|
|
|
module-formats.h \
|
2001-07-29 05:17:53 -04:00
|
|
|
perl-core.h \
|
|
|
|
perl-common.h \
|
|
|
|
perl-signals.h \
|
|
|
|
perl-sources.h
|
|
|
|
|
2001-02-17 05:35:35 -05:00
|
|
|
libperl_core_la_SOURCES = \
|
2000-10-03 19:54:56 -04:00
|
|
|
$(perl_sources)
|
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
libperl_core_static_la_SOURCES = \
|
2000-10-03 19:54:56 -04:00
|
|
|
$(perl_sources)
|
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
libfe_perl_la_SOURCES = \
|
|
|
|
$(perl_fe_sources)
|
|
|
|
|
|
|
|
libfe_perl_static_la_SOURCES = \
|
|
|
|
$(perl_fe_sources)
|
|
|
|
|
2001-01-03 02:34:12 -05:00
|
|
|
perl-signals-list.h: $(top_srcdir)/docs/signals.txt $(srcdir)/get-signals.pl
|
|
|
|
cat $(top_srcdir)/docs/signals.txt | $(perlpath) $(srcdir)/get-signals.pl > perl-signals-list.h
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2001-07-29 05:17:53 -04:00
|
|
|
irssi-core.pl.h: irssi-core.pl
|
2017-10-26 10:15:25 -04:00
|
|
|
$(top_srcdir)/utils/file2header.sh $(srcdir)/irssi-core.pl irssi_core_code > irssi-core.pl.h
|
2001-07-29 05:17:53 -04:00
|
|
|
|
2001-10-20 16:14:00 -04:00
|
|
|
common_sources = \
|
2001-06-27 18:56:17 -04:00
|
|
|
common/Irssi.xs \
|
|
|
|
common/Irssi.pm \
|
2000-10-11 18:01:23 -04:00
|
|
|
common/Channel.xs \
|
|
|
|
common/Core.xs \
|
2002-10-29 12:46:57 -05:00
|
|
|
common/Expando.xs \
|
2000-10-11 18:01:23 -04:00
|
|
|
common/Ignore.xs \
|
|
|
|
common/Log.xs \
|
|
|
|
common/Masks.xs \
|
|
|
|
common/Query.xs \
|
|
|
|
common/Rawlog.xs \
|
|
|
|
common/Server.xs \
|
|
|
|
common/Settings.xs \
|
|
|
|
common/Makefile.PL.in \
|
|
|
|
common/typemap \
|
|
|
|
common/module.h
|
2000-10-01 16:48:48 -04:00
|
|
|
|
2001-10-20 16:14:00 -04:00
|
|
|
irc_sources = \
|
2001-06-27 18:56:17 -04:00
|
|
|
irc/Irc.xs \
|
|
|
|
irc/Irc.pm \
|
2000-10-01 16:48:48 -04:00
|
|
|
irc/Dcc.xs \
|
2001-10-20 15:52:07 -04:00
|
|
|
irc/Channel.xs \
|
2001-11-18 16:36:11 -05:00
|
|
|
irc/Ctcp.xs \
|
2001-10-20 15:52:07 -04:00
|
|
|
irc/Query.xs \
|
|
|
|
irc/Server.xs \
|
2000-10-01 16:48:48 -04:00
|
|
|
irc/Modes.xs \
|
|
|
|
irc/Netsplit.xs \
|
|
|
|
irc/Notifylist.xs \
|
2008-11-02 07:13:36 -05:00
|
|
|
irc/Client.xs \
|
2001-06-27 18:56:17 -04:00
|
|
|
irc/Makefile.PL.in \
|
|
|
|
irc/typemap \
|
|
|
|
irc/module.h
|
|
|
|
|
2001-10-20 16:14:00 -04:00
|
|
|
ui_sources = \
|
2001-06-29 17:14:10 -04:00
|
|
|
ui/UI.xs \
|
|
|
|
ui/UI.pm \
|
2001-11-16 19:12:04 -05:00
|
|
|
ui/Formats.xs \
|
2001-06-29 17:14:10 -04:00
|
|
|
ui/Themes.xs \
|
|
|
|
ui/Window.xs \
|
|
|
|
ui/Makefile.PL.in \
|
|
|
|
ui/typemap \
|
|
|
|
ui/module.h
|
2000-10-01 16:48:48 -04:00
|
|
|
|
2001-10-20 16:14:00 -04:00
|
|
|
textui_sources = \
|
2001-08-17 07:55:08 -04:00
|
|
|
textui/TextUI.xs \
|
|
|
|
textui/TextUI.pm \
|
|
|
|
textui/TextBuffer.xs \
|
|
|
|
textui/TextBufferView.xs \
|
2001-10-20 15:52:07 -04:00
|
|
|
textui/Statusbar.xs \
|
2001-08-17 07:55:08 -04:00
|
|
|
textui/Makefile.PL.in \
|
|
|
|
textui/typemap \
|
|
|
|
textui/module.h
|
2001-08-17 07:51:21 -04:00
|
|
|
|
2000-10-01 16:48:48 -04:00
|
|
|
EXTRA_DIST = \
|
|
|
|
get-signals.pl \
|
2001-07-29 05:17:53 -04:00
|
|
|
irssi-core.pl \
|
2015-12-10 08:07:07 -05:00
|
|
|
Makefile_silent.pm \
|
2001-10-20 16:23:07 -04:00
|
|
|
$(common_sources) \
|
2001-10-20 16:14:00 -04:00
|
|
|
$(irc_sources) \
|
|
|
|
$(ui_sources) \
|
|
|
|
$(textui_sources)
|
2000-04-26 04:10:09 -04:00
|
|
|
|
2015-12-10 08:07:07 -05:00
|
|
|
am_v_pl__show_gen = $(am__v_pl__show_gen_$(V))
|
|
|
|
am_v_pl__hide_gen = $(am__v_pl__hide_gen_$(V))
|
|
|
|
am__v_pl__show_gen_ = $(am__v_pl__show_gen_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
am__v_pl__hide_gen_ = $(am__v_pl__hide_gen_$(AM_DEFAULT_VERBOSITY))
|
2016-03-30 04:14:57 -04:00
|
|
|
am__v_pl__show_gen_0 = echo " GEN " $$dir ;
|
2015-12-10 08:07:07 -05:00
|
|
|
am__v_pl__hide_gen_0 = > /dev/null
|
|
|
|
am__v_pl__show_gen_1 =
|
|
|
|
am__v_pl__hide_gen_1 =
|
|
|
|
|
2000-04-26 04:10:09 -04:00
|
|
|
all-local:
|
2015-12-10 08:07:07 -05:00
|
|
|
$(AM_V_GEN)for dir in $(perl_dirs); do \
|
2001-07-28 23:56:46 -04:00
|
|
|
cd $$dir && \
|
|
|
|
if [ ! -f Makefile ]; then \
|
2015-12-10 08:07:07 -05:00
|
|
|
$(am_v_pl__show_gen)$(perlpath) Makefile.PL $(PERL_MM_PARAMS) $(am_v_pl__hide_gen); \
|
2001-07-28 23:56:46 -04:00
|
|
|
fi && \
|
2002-11-17 11:05:32 -05:00
|
|
|
($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS) || \
|
|
|
|
$(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \
|
2001-07-28 23:56:46 -04:00
|
|
|
cd ..; \
|
|
|
|
done
|
2000-04-26 04:10:09 -04:00
|
|
|
|
|
|
|
install-exec-local:
|
2002-02-10 09:01:25 -05:00
|
|
|
for dir in $(perl_dirs); do \
|
2001-07-28 23:56:46 -04:00
|
|
|
cd $$dir && $(MAKE) install && cd ..; \
|
|
|
|
done
|
2000-09-07 17:55:58 -04:00
|
|
|
|
2001-01-04 13:35:26 -05:00
|
|
|
clean-generic:
|
2002-03-16 06:14:35 -05:00
|
|
|
for dir in $(perl_dirs); do \
|
|
|
|
cd $$dir; \
|
|
|
|
$(MAKE) clean; \
|
|
|
|
cd ..; \
|
|
|
|
done
|
2001-01-04 13:35:26 -05:00
|
|
|
|
2002-01-22 14:52:17 -05:00
|
|
|
distclean-generic:
|
2002-02-10 09:01:25 -05:00
|
|
|
for dir in $(perl_dirs); do \
|
|
|
|
cd $$dir; \
|
2003-11-16 13:19:03 -05:00
|
|
|
$(MAKE) realclean; rm -f Makefile.PL Makefile; \
|
2002-02-10 09:01:25 -05:00
|
|
|
cd ..; \
|
|
|
|
done
|
2001-03-10 21:33:00 -05:00
|
|
|
|
2001-02-17 05:35:35 -05:00
|
|
|
libperl_core_la_LIBADD = $(PERL_LDFLAGS)
|