X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=perl-module%2Fautomake.mk;h=b995d036dff9131d33230572fbad943bfa5f17e4;hb=691a034d7f2139076fa012739dffd40ef5db4a9b;hp=819df652dc7d9bff07cf8696b7dd022463291f6c;hpb=295c32309586d3e353d6bd28c748baad9354349a;p=pspp diff --git a/perl-module/automake.mk b/perl-module/automake.mk index 819df652dc..b995d036df 100644 --- a/perl-module/automake.mk +++ b/perl-module/automake.mk @@ -1,3 +1,19 @@ +# PSPP - a program for statistical analysis. +# Copyright (C) 2017 Free Software Foundation, Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# ## Process this file with automake to produce Makefile.in -*- makefile -*- # PSPP @@ -15,53 +31,55 @@ module_sources = \ perl-module/lib/PSPP.pm \ perl-module/t/Pspp.t +PERL_MAKEFLAGS = $(AM_MAKEFLAGS) LD_RUN_PATH=$(pkglibdir) + perl-module/pspp-module-config: Makefile - (echo '%Locations = (';\ + $(AM_V_GEN)(echo '%Locations = (';\ printf " SourceDir => '";\ (cd $(top_srcdir) && echo `pwd`\', ) ;\ printf " BuildDir => '";\ (cd $(top_builddir) && echo `pwd`\' );\ echo ');') > $(top_builddir)/perl-module/pspp-module-config -perl-module/Makefile: perl-module/Makefile.PL perl-module/pspp-module-config - cd perl-module && $(PERL) Makefile.PL PREFIX=$(prefix) +perl-module/Makefile: perl-module/Makefile.PL perl-module/pspp-module-config $(module_sources) + $(AM_V_GEN)cd perl-module && $(PERL) Makefile.PL PREFIX=$(prefix) \ + OPTIMIZE="$(CFLAGS) $(CPPFLAGS)" \ + LD="`$(PERL) -V::ld:` $(LDFLAGS)" -perl-module/PSPP-Perl-$(VERSION_FOR_PERL).tar.gz: $(module_sources) - $(RM) $@ - cd perl-module && $(MAKE) $(AM_MAKEFLAGS) tardist +perl-module/PSPP-Perl-$(VERSION_FOR_PERL).tar.gz: $(module_sources) perl-module/Makefile + $(AM_V_at)rm -f $@ + $(AM_V_GEN)cd perl-module && $(MAKE) $(PERL_MAKEFLAGS) tardist PHONY += module-make -module-make: perl-module/Makefile src/libpspp-core.la - cd perl-module && $(MAKE) $(AM_MAKEFLAGS) +module-make: perl-module/Makefile + $(AM_V_GEN)cd perl-module && $(MAKE) $(PERL_MAKEFLAGS) -perl_module_tarball: - if test x"$(top_builddir)" != x"$(top_srcdir)" ; then \ +ALL_LOCAL += perl_module_tarball +perl_module_tarball: $(module_sources) src/libpspp-core.la + @if test x"$(top_builddir)" != x"$(top_srcdir)" ; then \ for f in $(module_sources); do \ destdir=`dirname $$f` ;\ mkdir -p $$destdir ;\ - if test "$(top_srcdir)/$$f" -nt "$(top_builddir)/$$f" ; then \ + if test ! -e "$(top_builddir)/$$f" || \ + test "$(top_srcdir)/$$f" -nt "$(top_builddir)/$$f" ; then \ + if $(AM_V_P); then \ + echo cp $(top_srcdir)/$$f $$destdir ; \ + else \ + echo " GEN $$destdir/$$f"; \ + fi; \ cp $(top_srcdir)/$$f $$destdir ; \ - echo cp $(top_srcdir)/$$f $$destdir ; \ fi ; \ done \ fi - $(MAKE) $(AM_MAKEFLAGS) module-make perl-module/PSPP-Perl-$(VERSION_FOR_PERL).tar.gz - -ALL_LOCAL += perl_module_tarball - -check-local: - loc=`pwd` ; cd $(top_builddir)/src/.libs ; llp=`pwd` ; cd $$loc ; \ - LANG=C LD_LIBRARY_PATH=$$llp sh -c "cd perl-module && $(MAKE) $(AM_MAKEFLAGS) test" + $(AM_V_GEN)$(MAKE) $(PERL_MAKEFLAGS) module-make perl-module/PSPP-Perl-$(VERSION_FOR_PERL).tar.gz - -perl_module_CLEAN: +CLEAN_LOCAL += perl_module_clean +perl_module_clean: cd perl-module && $(MAKE) $(AM_MAKEFLAGS) clean || true if test x"$(top_builddir)" != x"$(top_srcdir)" ; then \ - $(RM) $(module_sources) ; \ + rm -f $(module_sources) ; \ fi - $(RM) perl-module/Makefile.old - -CLEAN_LOCAL += perl_module_CLEAN + rm -f perl-module/Makefile.old CLEANFILES += \ perl-module/PSPP-Perl-$(VERSION_FOR_PERL).tar.gz \