2 # This Makefile fragment is shared between fileutils, sh-utils, textutils,
3 # CPPI, Bison, and Autoconf.
5 ## Copyright (C) 2001-2003 Free Software Foundation, Inc.
7 ## This program is free software; you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation; either version 2, or (at your option)
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ## GNU General Public License for more details.
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program; if not, write to the Free Software
19 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 # Do not save the original name or timestamp in the .tar.gz file.
23 GZIP_ENV = '--no-name --best'
27 prev_version_file ?= .prev-version
29 THIS_VERSION_REGEXP = $(subst .,\.,$(VERSION))
30 PREV_VERSION := $(shell cat $(prev_version_file))
31 PREV_VERSION_REGEXP := $(shell echo $(PREV_VERSION)|sed 's/\./\\./g')
33 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
34 tag-this-version = $(subst .,_,$(VERSION))
35 tag-prev-version = $(subst .,_,$(PREV_VERSION))
36 this-cvs-tag = $(tag-package)-$(tag-this-version)
37 prev-cvs-tag = $(tag-package)-$(tag-prev-version)
38 my_distdir = $(PACKAGE)-$(VERSION)
40 # Old releases are stored here.
41 # Used for diffs and xdeltas.
42 release_archive_dir ?= ../release
50 # Checks that don't require cvs.
51 # Run `changelog-check' last, as previous test may reveal problems requiring
52 # new ChangeLog entries.
54 po-check copyright-check writable-files m4-check author_mark_check \
55 changelog-check strftime-check header-check
56 .PHONY: $(local-check)
58 # Make sure C source files in src/ don't include xalloc.h directly,
59 # since they all already include it via sys2.h.
60 # It's not a big deal -- just aesthetics.
62 if test -f $(srcdir)/src/sys2.h; then \
63 if grep 'xalloc\.h' $(srcdir)/src/*.c; then \
68 # Ensure that date's --help output stays in sync with the info
69 # documentation for GNU strftime. The only exception is %N,
70 # which date accepts but GNU strftime does not.
71 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
73 if test -f $(srcdir)/src/date.c; then \
74 grep '^ %. ' $(srcdir)/src/date.c | sort \
75 | $(extract_char) > $@-src; \
77 info libc date calendar format | grep '^ `%.'\' \
78 | $(extract_char); } | sort > $@-info; \
79 diff -u $@-src $@-info || exit 1; \
80 rm -f $@-src $@-info; \
84 if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \
87 echo "$(VERSION) not in ChangeLog" 1>&2; \
92 @grep 'AC_DEFUN([^[]' m4/*.m4 \
93 && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
96 # Verify that all source files using _() are listed in po/POTFILES.in.
98 if test -f po/POTFILES.in; then \
99 grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1; \
101 for file in lib/*.[chly] src/*.[chly]; do \
104 base=`expr " $$file" : ' \(.*\)\..'`; \
105 { test -f $$base.l || test -f $$base.y; } && continue;; \
107 files="$$files $$file"; \
109 grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort > $@-2; \
110 diff -u $@-1 $@-2 || exit 1; \
114 # In a definition of #define AUTHORS "... and ..." where the RHS contains
115 # the English word `and', the string must be marked with `N_ (...)' so that
116 # gettext recognizes it as a string requiring translation.
118 @grep '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
119 { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
122 # Check that `make alpha' will not fail at the end of the process.
124 if test -d $(release_archive_dir); then :; else \
125 mkdir $(release_archive_dir); \
127 for file in $(distdir).tar.gz $(xd-delta) \
128 $(release_archive_dir)/$(distdir).tar.gz \
129 $(release_archive_dir)/$(xd-delta); do \
130 test -e $$file || continue; \
132 || { echo ERROR: $$file is not writable; fail=1; }; \
134 test "$$fail" && exit 1 || :
136 v_etc_file = lib/version-etc.c
137 # Make sure that the copyright date in $(v_etc_file) is up to date.
139 @if test -f $(v_etc_file); then \
140 grep '"Copyright (C) $(shell date +%Y) Free' $(v_etc_file) \
142 || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
147 # Sanity checks with the CVS repository.
149 echo $(this-cvs-tag); \
150 if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
151 echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
156 if $(CVS) diff >cvs-diffs; then \
159 echo "Some files are locally modified:" 1>&2; \
164 cvs-check: cvs-diff-check cvs-tag-check
166 maintainer-distcheck: changelog-check
171 # Tag before making distribution. Also, don't make a distribution if
172 # checks fail. Also, make sure the NEWS file is up-to-date.
173 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
174 cvs-dist: $(local-check) cvs-check maintainer-distcheck
176 $(CVS) tag -c $(this-cvs-tag)
179 # Use this to make sure we don't run these programs when building
180 # from a virgin tgz file, below.
181 null_AM_MAKEFLAGS = \
188 # Detect format-string/arg-list mismatches that would normally be obscured
189 # by the use of _(). The --disable-nls effectively defines away that macro,
190 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
191 # treated as a failure.
193 my-distcheck: $(local-check)
196 GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
198 && ./configure --disable-nls \
199 && $(MAKE) CFLAGS='-Wformat -Werror' \
200 AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)' \
204 cd $(t) && mv $(distdir) $(distdir).old \
205 && $(AMTAR) -zxf ../$(distdir).tar.gz
206 diff -ur $(t)/$(distdir).old $(t)/$(distdir)
208 @echo "========================"; \
209 echo "$(distdir).tar.gz is ready for distribution"; \
210 echo "========================"
212 tgz-md5 = $(shell md5sum < $(my_distdir).tar.gz|sed 's/ -//')
213 tgz-sha1 = $(shell sha1sum < $(my_distdir).tar.gz|sed 's/ -//')
214 bz2-md5 = $(shell md5sum < $(my_distdir).tar.bz2|sed 's/ -//')
215 bz2-sha1 = $(shell sha1sum < $(my_distdir).tar.bz2|sed 's/ -//')
216 xdelta-md5 = $(shell md5sum < $(xd-delta)|sed 's/ -//')
217 xdelta-sha1 = $(shell sha1sum < $(xd-delta)|sed 's/ -//')
218 tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([MkK]\).*/ \1B/')
219 bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([MkK]\).*/ \1B/')
220 xd-size = $(shell du --human $(xd-delta)|sed 's/\([MkK]\).*/ \1B/')
223 tarz=/tmp/rel-check-tarz-$$$$; \
224 md5_tmp=/tmp/rel-check-md5-$$$$; \
226 trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
227 wget -q --output-document=$$tarz $(url); \
228 echo "$(md5) -" > $$md5_tmp; \
229 md5sum -c $$md5_tmp < $$tarz
231 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
232 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
234 news-r1 = /^[^ ].*$(THIS_VERSION_REGEXP)[]:]/
235 news-r2 = /^[^ ].*$(PREV_VERSION_REGEXP)[]:]/
237 signatures ?= $(distdir).tar.bz2.sig $(distdir).tar.gz.sig
241 rel-files = $(xd-delta) $(distdir).tar.bz2 $(distdir).tar.gz
242 announcement: NEWS ChangeLog $(rel-files) $(signatures)
245 --package=$(PACKAGE) \
246 --prev=$(PREV_VERSION) \
248 --rel=$(release_archive_dir) \
249 $(addprefix --url-dir=, $(url_dir_list)); \
252 sed -n "$(news-r1),$(news-r2)p" NEWS \
255 echo ChangeLog entries:; \
256 find . -name ChangeLog -maxdepth 2 \
257 | xargs $(CVS) diff -up -r$(prev-cvs-tag) -rHEAD \
259 | perl -ne 'm!^\+\+ (\./)?! or print,next;' \
260 -e 'print "\n"."*"x70 ."\n"; s///; print; print "*"x70 ."\n"'; \
264 ## ---------------- ##
265 ## Updating files. ##
266 ## ---------------- ##
269 ftp-gnu = ftp://ftp.gnu.org/gnu
271 # Use mv, if you don't have/want move-if-change.
272 move_if_change ?= move-if-change
275 # --------------------- #
276 # Updating everything. #
277 # --------------------- #
280 local_updates ?= wget-update cvs-update po-update
281 update: $(local_updates)
284 # ------------------- #
285 # Updating PO files. #
286 # ------------------- #
288 po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
289 .PHONY: do-po-update po-update
291 tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
294 (cd $$tmppo && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
296 cd po && $(MAKE) update-po
300 if test -d "po"; then \
301 $(MAKE) do-po-update; \
304 # -------------------------- #
305 # Updating GNU build tools. #
306 # -------------------------- #
308 # The following pseudo table associates a local directory and a URL
309 # with each of the files that belongs to some other package and is
310 # regularly updated from the specified URL.
311 wget_files ?= $(srcdir)/config/config.guess \
312 $(srcdir)/config/config.sub \
313 $(srcdir)/src/ansi2knr.c \
314 $(srcdir)/config/texinfo.tex
315 get-targets = $(patsubst %, get-%, $(wget_files))
317 config.guess-url_prefix = $(ftp-gnu)/config/
318 config.sub-url_prefix = $(ftp-gnu)/config/
320 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
322 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
324 standards.texi-url_prefix = $(ftp-gnu)/GNUinfo/
325 make-stds.texi-url_prefix = $(ftp-gnu)/GNUinfo/
327 target = $(patsubst get-%, %, $@)
328 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
330 .PHONY: $(get-targets)
332 $(WGET) $(url) -O $(target).t \
333 && $(move_if_change) $(target).t $(target)
335 cvs_files ?= $(srcdir)/config/depcomp $(srcdir)/config/missing \
336 $(srcdir)/config/mkinstalldirs \
337 $(srcdir)/config/install-sh $(srcdir)/src/ansi2knr.c
338 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
340 wget-update: $(get-targets)
345 for f in $(cvs_files); do \
346 test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \
347 cvs diff $$f > /dev/null \
348 || { echo "*** $$f is locally modified; skipping it" 1>&2; \
349 fail=yes; continue; }; \
350 file=$$(basename $$f); \
351 echo checking out $$file...; \
352 $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t \
353 && $(move_if_change) $$f.t $$f; \
355 test "$$fail" && exit 1
357 define emit-upload-commands
358 echo =====================================
359 echo =====================================
360 echo upload $(PACKAGE) $(PREV_VERSION) $(VERSION)
361 echo '# send the /tmp/announcement e-mail'
362 echo =====================================
363 echo =====================================
366 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
367 xdelta delta -9 $^ $@ || :
369 .PHONY: alpha release
371 release: $(local-check)
374 $(MAKE) -s announcement > /tmp/announce-$(my_distdir)
375 ln $(rel-files) $(release_archive_dir)
376 chmod a-w $(rel-files)
377 echo $(VERSION) > $(prev_version_file)
378 $(CVS) ci -m. $(prev_version_file)
379 @$(emit-upload-commands)