1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
# Process this file with automake to produce Makefile.in (in this,
# and all subdirectories).
# Makefile for the top-level directory of GNU hello.
#
# Copyright 1997, 1998, 2005, 2006, 2007, 2008, 2009 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, 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 <http://www.gnu.org/licenses/>.
# Find gnulib headers.
ACLOCAL_AMFLAGS = -I gnulib/m4
# Additional files to distribute.
EXTRA_DIST = ChangeLog.O gnulib/m4/gnulib-cache.m4
# Subdirectories to descend into.
SUBDIRS = contrib gnulib/lib po src doc man tests
# `make diff' produces a diff against the previous version, given both
# .tar.gz's in the current directory. This should only be done when an
# official release is made (and only if you care to provide diffs).
#
hello_pre = 2.3
diff: diffcheck
@(echo "To apply these patches, cd to the main directory of the package"; \
echo "and then use \`patch -p1 <hello-XXX.diff'."; \
echo "Before building the program, run \`autogen.sh'."; ) > \
$(PACKAGE)-$(hello_pre)-$(VERSION).diff
-diff -rc2P --exclude=configure --exclude=config.h.in --exclude=*.info \
--exclude=*.gmo --exclude=aclocal.m4 \
$(PACKAGE)-$(hello_pre) $(PACKAGE)-$(VERSION) >> \
$(PACKAGE)-$(hello_pre)-$(VERSION).diff
gzip --force --best $(PACKAGE)-$(hello_pre)-$(VERSION).diff
diffcheck:
for d in $(PACKAGE)-$(hello_pre) $(PACKAGE)-$(VERSION) ; do \
if test ! -d $$d ; then \
if test -r $$d.tar.gz ; then \
tar -zxf $$d.tar.gz ; \
else \
echo subdir $$d does not exist. ; \
exit 1 ; \
fi ; \
fi ; \
done
# Verify that all source files using _() are listed in po/POTFILES.in.
# The idea is to run this before making pretests, as well as official
# releases, so that translators will be sure to have all the messages.
# (From coreutils.)
po-check:
if test -f po/POTFILES.in; then \
grep -E -v '^(#|$$)' po/POTFILES.in \
| grep -v '^src/false\.c$$' | sort > $@-1; \
files=; \
for file in $$($(CVS_LIST_EXCEPT)) `find * -name '*.[ch]'`; do \
case $$file in \
djgpp/* | man/*) continue;; \
esac; \
case $$file in \
*.[ch]) \
base=`expr " $$file" : ' \(.*\)\..'`; \
{ test -f $$base.l || test -f $$base.y; } && continue;; \
esac; \
files="$$files $$file"; \
done; \
grep -E -l '\b(N?_|gettext *)\([^)"]*("|$$)' $$files \
| sort -u > $@-2; \
diff -u $@-1 $@-2 || exit 1; \
rm -f $@-1 $@-2; \
fi
# Example of updating the online web pages for the documentation
# with the gendocs.sh script; see
# http://www.gnu.org/prep/maintain/html_node/Invoking-gendocs_002esh.html
#
gnulib = $(HOME)/gnu/src/gnulib
gendocs = $(gnulib)/build-aux/gendocs.sh
gendocs_templates = $(gnulib)/doc
gendocs_envvars = GENDOCS_TEMPLATE_DIR=$(gendocs_templates)
#
manual = hello
manual_title = "Hello, GNU World"
email = bug-hello@gnu.org
gendocs_args = --email $(email) $(manual) $(manual_title)
#
www_target = $(HOME)/gnu/www/hello/manual
#
doctemp = doc/wwwtemp
wwwdoc:
rm -rf $(doctemp) && mkdir $(doctemp)
cd $(doctemp) \
&& ln -s ../*.texi . \
&& env $(gendocs_envvars) $(gendocs) $(gendocs_args)
cp -arf $(doctemp)/manual/. $(www_target)
ls -ltu $(www_target)/html_node | tail # cvs rm -f obsolete files
# followed by cvs add of new files and cvs commit.
|