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 ifeq ($(origin prev_version_file), undefined)
28 prev_version_file = .prev-version
31 PREV_VERSION := $(shell cat $(prev_version_file))
33 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
34 tag-this-version = $(subst .,_,$(VERSION))
35 this-cvs-tag = $(tag-package)-$(tag-this-version)
36 my_distdir = $(PACKAGE)-$(VERSION)
38 # Old releases are stored here.
39 # Used for diffs and xdeltas.
40 release_archive_dir ?= ../release
48 # Checks that don't require cvs.
49 # Run `changelog-check' last, as previous test may reveal problems requiring
50 # new ChangeLog entries.
52 po-check copyright-check writable-files m4-check author_mark_check \
53 changelog-check strftime-check header-check makefile_path_separator_check
54 .PHONY: $(local-check)
56 # Make sure C source files in src/ don't include xalloc.h directly,
57 # since they all already include it via sys2.h.
58 # It's not a big deal -- just aesthetics.
60 if test -f $(srcdir)/src/sys2.h; then \
61 if grep 'xalloc\.h' $(srcdir)/src/*.c; then \
66 # Ensure that date's --help output stays in sync with the info
67 # documentation for GNU strftime. The only exception is %N,
68 # which date accepts but GNU strftime does not.
69 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
71 if test -f $(srcdir)/src/date.c; then \
72 grep '^ %. ' $(srcdir)/src/date.c | sort \
73 | $(extract_char) > $@-src; \
75 info libc date calendar format | grep '^ `%.'\' \
76 | $(extract_char); } | sort > $@-info; \
77 diff -u $@-src $@-info || exit 1; \
78 rm -f $@-src $@-info; \
82 if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \
85 echo "$(VERSION) not in ChangeLog" 1>&2; \
90 @grep 'AC_DEFUN([^[]' m4/*.m4 \
91 && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
94 # Verify that all source files using _() are listed in po/POTFILES.in.
96 if test -f po/POTFILES.in; then \
97 grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1; \
99 for file in lib/*.[chly] src/*.[chly]; do \
102 base=`expr " $$file" : ' \(.*\)\..'`; \
103 { test -f $$base.l || test -f $$base.y; } && continue;; \
105 files="$$files $$file"; \
107 grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort > $@-2; \
108 diff -u $@-1 $@-2 || exit 1; \
112 # In a definition of #define AUTHORS "... and ..." where the RHS contains
113 # the English word `and', the string must be marked with `N_ (...)' so that
114 # gettext recognizes it as a string requiring translation.
116 @grep '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
117 { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
120 # Sometimes it is useful to change the PATH environment variable
121 # in Makefiles. When doing so, it's better not to use the Unix-centric
122 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
123 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
124 # and there probably aren't many projects with so many Makefile.am files
125 # that we'd have to worry about limits on command line length.
126 msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
127 makefile_path_separator_check:
128 @grep 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
129 && { echo $(msg) 1>&2; exit 1; } || :
131 # Check that `make alpha' will not fail at the end of the process.
133 if test -d $(release_archive_dir); then :; else \
134 mkdir $(release_archive_dir); \
136 for file in $(distdir).tar.gz $(xd-delta) \
137 $(release_archive_dir)/$(distdir).tar.gz \
138 $(release_archive_dir)/$(xd-delta); do \
139 test -e $$file || continue; \
141 || { echo ERROR: $$file is not writable; fail=1; }; \
143 test "$$fail" && exit 1 || :
145 v_etc_file = lib/version-etc.c
146 # Make sure that the copyright date in $(v_etc_file) is up to date.
148 @if test -f $(v_etc_file); then \
149 grep '"Copyright (C) $(shell date +%Y) Free' $(v_etc_file) \
151 || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
156 # Sanity checks with the CVS repository.
158 echo $(this-cvs-tag); \
159 if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
160 echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
165 if $(CVS) diff >cvs-diffs; then \
168 echo "Some files are locally modified:" 1>&2; \
173 cvs-check: cvs-diff-check cvs-tag-check
175 maintainer-distcheck: changelog-check
180 # Tag before making distribution. Also, don't make a distribution if
181 # checks fail. Also, make sure the NEWS file is up-to-date.
182 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
183 cvs-dist: $(local-check) cvs-check maintainer-distcheck
185 $(CVS) tag -c $(this-cvs-tag)
188 # Use this to make sure we don't run these programs when building
189 # from a virgin tgz file, below.
190 null_AM_MAKEFLAGS = \
197 # Detect format-string/arg-list mismatches that would normally be obscured
198 # by the use of _(). The --disable-nls effectively defines away that macro,
199 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
200 # treated as a failure.
202 my-distcheck: $(local-check)
205 GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
207 && ./configure --disable-nls \
208 && $(MAKE) CFLAGS='-Wformat -Werror' \
209 AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)' \
213 cd $(t) && mv $(distdir) $(distdir).old \
214 && $(AMTAR) -zxf ../$(distdir).tar.gz
215 diff -ur $(t)/$(distdir).old $(t)/$(distdir)
217 @echo "========================"; \
218 echo "$(distdir).tar.gz is ready for distribution"; \
219 echo "========================"
221 tgz-md5 = $(shell md5sum < $(my_distdir).tar.gz|sed 's/ -//')
222 tgz-sha1 = $(shell sha1sum < $(my_distdir).tar.gz|sed 's/ -//')
223 bz2-md5 = $(shell md5sum < $(my_distdir).tar.bz2|sed 's/ -//')
224 bz2-sha1 = $(shell sha1sum < $(my_distdir).tar.bz2|sed 's/ -//')
225 xdelta-md5 = $(shell md5sum < $(xd-delta)|sed 's/ -//')
226 xdelta-sha1 = $(shell sha1sum < $(xd-delta)|sed 's/ -//')
227 tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([MkK]\).*/ \1B/')
228 bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([MkK]\).*/ \1B/')
229 xd-size = $(shell du --human $(xd-delta)|sed 's/\([MkK]\).*/ \1B/')
232 tarz=/tmp/rel-check-tarz-$$$$; \
233 md5_tmp=/tmp/rel-check-md5-$$$$; \
235 trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
236 wget -q --output-document=$$tarz $(url); \
237 echo "$(md5) -" > $$md5_tmp; \
238 md5sum -c $$md5_tmp < $$tarz
240 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
241 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
243 signatures ?= $(distdir).tar.bz2.sig $(distdir).tar.gz.sig
247 rel-files = $(xd-delta) $(distdir).tar.bz2 $(distdir).tar.gz $(signatures)
248 announcement: NEWS ChangeLog $(rel-files) $(signatures)
250 --release-type=$(RELEASE_TYPE) \
251 --package=$(PACKAGE) \
252 --prev=$(PREV_VERSION) \
254 --release-archive-directory=$(release_archive_dir) \
256 $(addprefix --url-dir=, $(url_dir_list)) \
259 ## ---------------- ##
260 ## Updating files. ##
261 ## ---------------- ##
264 ftp-gnu = ftp://ftp.gnu.org/gnu
265 www-gnu = http://www.gnu.org
267 # Use mv, if you don't have/want move-if-change.
268 move_if_change ?= move-if-change
271 # --------------------- #
272 # Updating everything. #
273 # --------------------- #
276 local_updates ?= wget-update cvs-update po-update
277 update: $(local_updates)
280 # ------------------- #
281 # Updating PO files. #
282 # ------------------- #
284 po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
285 .PHONY: do-po-update po-update
287 tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
290 (cd $$tmppo && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
292 cd po && $(MAKE) update-po
296 if test -d "po"; then \
297 $(MAKE) do-po-update; \
300 # -------------------------- #
301 # Updating GNU build tools. #
302 # -------------------------- #
304 # The following pseudo table associates a local directory and a URL
305 # with each of the files that belongs to some other package and is
306 # regularly updated from the specified URL.
307 wget_files ?= $(srcdir)/config/config.guess \
308 $(srcdir)/config/config.sub \
309 $(srcdir)/src/ansi2knr.c \
310 $(srcdir)/config/texinfo.tex
311 get-targets = $(patsubst %, get-%, $(wget_files))
313 config.guess-url_prefix = $(ftp-gnu)/config/
314 config.sub-url_prefix = $(ftp-gnu)/config/
316 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
318 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
320 standards.texi-url_prefix = $(www-gnu)/prep/
321 make-stds.texi-url_prefix = $(standards.texi-url_prefix)
323 target = $(patsubst get-%, %, $@)
324 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
326 .PHONY: $(get-targets)
328 $(WGET) $(url) -O $(target).t \
329 && $(move_if_change) $(target).t $(target)
331 cvs_files ?= $(srcdir)/config/depcomp $(srcdir)/config/missing \
332 $(srcdir)/config/mkinstalldirs \
333 $(srcdir)/config/install-sh $(srcdir)/src/ansi2knr.c
334 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
336 wget-update: $(get-targets)
341 for f in $(cvs_files); do \
342 test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \
343 cvs diff $$f > /dev/null \
344 || { echo "*** $$f is locally modified; skipping it" 1>&2; \
345 fail=yes; continue; }; \
346 file=$$(basename $$f); \
347 echo checking out $$file...; \
348 $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t \
349 && $(move_if_change) $$f.t $$f; \
351 test "$$fail" && exit 1
353 define emit-upload-commands
354 echo =====================================
355 echo =====================================
356 echo upload $(PACKAGE) $(PREV_VERSION) $(VERSION)
357 echo '# send the /tmp/announcement e-mail'
358 echo =====================================
359 echo =====================================
362 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
363 xdelta delta -9 $^ $@ || :
365 .PHONY: alpha beta major
366 alpha beta major: $(local-check)
369 $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
370 ln $(rel-files) $(release_archive_dir)
371 chmod a-w $(rel-files)
372 echo $(VERSION) > $(prev_version_file)
373 $(CVS) ci -m. $(prev_version_file)
374 @$(emit-upload-commands)