X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flibpspp%2Fautomake.mk;h=b68fce0d5227797084a24a420a917e6fc5b4b8cc;hb=e4955eebfee4b79846bbb5ba27daaa39a02ef05c;hp=55e1a1f6cc7f60474dd75d49402cd95cd931b0b5;hpb=be1157c5591142920a95d587acf97f5eaf3d04fe;p=pspp diff --git a/src/libpspp/automake.mk b/src/libpspp/automake.mk index 55e1a1f6cc..b68fce0d52 100644 --- a/src/libpspp/automake.mk +++ b/src/libpspp/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 -*- @@ -113,21 +129,26 @@ nodist_src_libpspp_liblibpspp_la_SOURCES = src/libpspp/version.c src/libpspp/version.c: $(top_srcdir)/AUTHORS Makefile @$(MKDIR_P) src/libpspp - $(AM_V_GEN)echo "/* -*- mode: c; buffer-read-only: t -*-" > $@ - $(AM_V_at)echo " Generated by src/libpspp/automake.mk --- Do not edit.">> $@ - $(AM_V_at)echo "" >> $@ - $(AM_V_at)echo " The following line is for the benefit of the perl module" >>$@ - $(AM_V_at)echo "\$$VERSION='$(VERSION_FOR_PERL)';" >> $@ - $(AM_V_at)echo "*/" >> $@ - $(AM_V_at)echo "#include \"version.h\"" >> $@ - $(AM_V_at)echo "const char bare_version[] = \"$(VERSION)\";" >> $@ - $(AM_V_at)echo "const char version[] = \"GNU $(PACKAGE) $(VERSION)\";" >> $@ - $(AM_V_at)echo "const char stat_version[] = \"GNU $(PACKAGE) $(VERSION) \ -$(AM_V_at)(`LC_ALL=C TZ=UTC date`).\";" >> $@ - $(AM_V_at)echo "const char host_system[] = \"$(host_triplet)\";" >> $@ - $(AM_V_at)echo "const char build_system[] = \"$(build_triplet)\";" >> $@ - $(AM_V_at)echo "const char locale_dir[] = \"$(datadir)/locale\";" >> $@ - $(AM_V_at)echo "const char examples_dir[] = \"$(examplesdir)\";" >> $@ - $(AM_V_at)echo "const char *const authors[] = {" >> $@ - $(AM_V_at)sed -e 's/^/ \"/' -e 's/$$/\",/' $(top_srcdir)/AUTHORS >> $@ - $(AM_V_at)echo "0 };" >> $@ + $(AM_V_GEN)echo "/* -*- mode: c; buffer-read-only: t -*-" > $@,tmp + $(AM_V_at)echo " Generated by src/libpspp/automake.mk --- Do not edit.">> $@,tmp + $(AM_V_at)echo "" >> $@,tmp + $(AM_V_at)echo " The following line is for the benefit of the perl module" >>$@,tmp + $(AM_V_at)echo "\$$VERSION='$(VERSION_FOR_PERL)';" >> $@,tmp + $(AM_V_at)echo "*/" >> $@,tmp + $(AM_V_at)echo "#include \"version.h\"" >> $@,tmp + $(AM_V_at)echo "const char bare_version[] = \"$(VERSION)\";" >> $@,tmp + $(AM_V_at)echo "const char version[] = \"GNU $(PACKAGE) $(VERSION)\";" >> $@,tmp + $(AM_V_at)printf "const char announced_version[] = \"GNU $(PACKAGE) $(VERSION)\"" >> $@,tmp + @case `echo $(VERSION) | $(SED) -e 's/[0-9][0-9]*\.[0-9]*\([0-9]\)\.[0-9][0-9]*/\1/'` in \ + [13579]) printf "\"\\\nThis is an unreleased test version. It is not recommended for production use. Use at your own risk\"" >> $@,tmp \ + ;;\ + esac + $(AM_V_at)printf ";\n" >> $@,tmp + $(AM_V_at)echo "const char host_system[] = \"$(host_triplet)\";" >> $@,tmp + $(AM_V_at)echo "const char build_system[] = \"$(build_triplet)\";" >> $@,tmp + $(AM_V_at)echo "const char locale_dir[] = \"$(datadir)/locale\";" >> $@,tmp + $(AM_V_at)echo "const char examples_dir[] = \"$(examplesdir)\";" >> $@,tmp + $(AM_V_at)echo "const char *const authors[] = {" >> $@,tmp + $(AM_V_at)$(SED) -e 's/^/ \"/' -e 's/$$/\",/' $(top_srcdir)/AUTHORS >> $@,tmp + $(AM_V_at)echo "0 };" >> $@,tmp + $(AM_V_at)mv $@,tmp $@