(syntax-check): Rename from alloc-check.
[platform/upstream/coreutils.git] / Makefile.maint
1 # -*-Makefile-*-
2 # This Makefile fragment is shared between fileutils, sh-utils, textutils,
3 # CPPI, Bison, and Autoconf.
4
5 ## Copyright (C) 2001-2003 Free Software Foundation, Inc.
6 ##
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)
10 ## any later version.
11 ##
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.
16 ##
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
20 ## 02111-1307, USA.
21
22 # Do not save the original name or timestamp in the .tar.gz file.
23 GZIP_ENV = '--no-name --best'
24
25 CVS = cvs
26
27 ifeq ($(origin prev_version_file), undefined)
28   prev_version_file = .prev-version
29 endif
30
31 PREV_VERSION := $(shell cat $(prev_version_file))
32
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)
37
38 # Old releases are stored here.
39 # Used for diffs and xdeltas.
40 release_archive_dir ?= ../release
41
42
43
44 ## --------------- ##
45 ## Sanity checks.  ##
46 ## --------------- ##
47
48 # Checks that don't require cvs.
49 # Run `changelog-check' last, as previous test may reveal problems requiring
50 # new ChangeLog entries.
51 local-check = \
52   po-check copyright-check writable-files m4-check author_mark_check \
53   changelog-check strftime-check syntax-check makefile_path_separator_check \
54   makefile-check
55 .PHONY: $(local-check)
56
57 # Make sure C source files in src/ don't include xalloc.h directly,
58 # since they all already include it via sys2.h.
59 # It's not a big deal -- just aesthetics.
60 syntax-check:
61         if test -f $(srcdir)/src/sys2.h; then                           \
62           if grep 'xalloc\.h' $(srcdir)/src/*.c; then                   \
63             exit 1;                                                     \
64           fi;                                                           \
65         fi
66         @grep -E '[ ]   ' --exclude=$(srcdir)/lib/regex.c               \
67                 $(srcdir)/{lib,src}/*.[chy]                             \
68                 $(find -name Makefile.am) &&                            \
69           { echo 'Makefile.maint: found SPACE-TAB sequence; remove the SPACE' \
70                 1>&2; \
71             exit 1; } || :
72         @grep -E --exclude=$(srcdir)/lib/regex.c                        \
73             '\*\) *x(m|c|re)alloc\>' $(srcdir)/{lib,src}/*.[chy] &&     \
74           { echo 'Makefile.maint: don'\''t cast x*alloc return value' 1>&2; \
75             exit 1; } || :
76
77 #       grep -E '^#  *include <(string|stdlib)\.h>'                     \
78 #           $(srcdir)/{lib,src}/*.[chy] &&                              \
79 #         { echo 'Makefile.maint: FIXME' 1>&2;                          \
80 #           exit 1; } || :
81 # FIXME: don't allow `#include .strings\.h' anywhere
82
83 # Ensure that date's --help output stays in sync with the info
84 # documentation for GNU strftime.  The only exception is %N,
85 # which date accepts but GNU strftime does not.
86 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
87 strftime-check:
88         if test -f $(srcdir)/src/date.c; then                           \
89           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
90             | $(extract_char) > $@-src;                                 \
91           { echo N;                                                     \
92             info libc date calendar format | grep '^    `%.'\'          \
93               | $(extract_char); } | sort > $@-info;                    \
94           diff -u $@-src $@-info || exit 1;                             \
95           rm -f $@-src $@-info;                                         \
96         fi
97
98 # Ensure that we use only the standard $(VAR) notation,
99 # not @...@ in Makefile.am, now that we can rely on automake
100 # to emit a definition for each substituted variable.
101 makefile-check:
102         grep -E '@[A-Z_]+@' `find . -name Makefile.am` \
103           && { echo 'Makefile.maint: use $(...), not @...@' 1>&2; exit 1; } || :
104
105 changelog-check:
106         if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \
107           :; \
108         else \
109           echo "$(VERSION) not in ChangeLog" 1>&2; \
110           exit 1; \
111         fi
112
113 m4-check:
114         @grep 'AC_DEFUN([^[]' m4/*.m4 \
115           && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
116                exit 1; } || :
117
118 # Verify that all source files using _() are listed in po/POTFILES.in.
119 po-check:
120         if test -f po/POTFILES.in; then \
121           grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1; \
122           files=; \
123           for file in lib/*.[chly] src/*.[chly]; do \
124             case $$file in \
125             *.[ch]) \
126               base=`expr " $$file" : ' \(.*\)\..'`; \
127               { test -f $$base.l || test -f $$base.y; } && continue;; \
128             esac; \
129             files="$$files $$file"; \
130           done; \
131           grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort > $@-2; \
132           diff -u $@-1 $@-2 || exit 1; \
133           rm -f $@-1 $@-2; \
134         fi
135
136 # In a definition of #define AUTHORS "... and ..." where the RHS contains
137 # the English word `and', the string must be marked with `N_ (...)' so that
138 # gettext recognizes it as a string requiring translation.
139 author_mark_check:
140         @grep '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
141           { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
142             exit 1; } || :
143
144 # Sometimes it is useful to change the PATH environment variable
145 # in Makefiles.  When doing so, it's better not to use the Unix-centric
146 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
147 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
148 # and there probably aren't many projects with so many Makefile.am files
149 # that we'd have to worry about limits on command line length.
150 msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
151 makefile_path_separator_check:
152         @grep 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
153           && { echo $(msg) 1>&2; exit 1; } || :
154
155 # Check that `make alpha' will not fail at the end of the process.
156 writable-files:
157         if test -d $(release_archive_dir); then :; else                 \
158           mkdir $(release_archive_dir);                                 \
159         fi
160         for file in $(distdir).tar.gz $(xd-delta)                       \
161                     $(release_archive_dir)/$(distdir).tar.gz            \
162                     $(release_archive_dir)/$(xd-delta); do              \
163           test -e $$file || continue;                                   \
164           test -w $$file                                                \
165             || { echo ERROR: $$file is not writable; fail=1; };         \
166         done;                                                           \
167         test "$$fail" && exit 1 || :
168
169 v_etc_file = lib/version-etc.c
170 # Make sure that the copyright date in $(v_etc_file) is up to date.
171 copyright-check:
172         @if test -f $(v_etc_file); then \
173           grep '"Copyright (C) $(shell date +%Y) Free' $(v_etc_file) \
174             >/dev/null \
175           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
176                exit 1; }; \
177         fi
178
179
180 # Sanity checks with the CVS repository.
181 cvs-tag-check:
182         echo $(this-cvs-tag); \
183         if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
184           echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
185           exit 1; \
186         else :; fi
187
188 cvs-diff-check:
189         if $(CVS) diff >cvs-diffs; then                         \
190           rm cvs-diffs;                                         \
191         else                                                    \
192           echo "Some files are locally modified:" 1>&2;         \
193           cat cvs-diffs;                                        \
194           exit 1;                                               \
195         fi
196
197 cvs-check: cvs-diff-check cvs-tag-check
198
199 maintainer-distcheck: changelog-check
200         $(MAKE) distcheck
201         $(MAKE) my-distcheck
202
203
204 # Tag before making distribution.  Also, don't make a distribution if
205 # checks fail.  Also, make sure the NEWS file is up-to-date.
206 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
207 cvs-dist: $(local-check) cvs-check maintainer-distcheck
208         $(CVS) update po
209         $(CVS) tag -c $(this-cvs-tag)
210         $(MAKE) dist
211
212 # Use this to make sure we don't run these programs when building
213 # from a virgin tgz file, below.
214 null_AM_MAKEFLAGS = \
215   ACLOCAL=false \
216   AUTOCONF=false \
217   AUTOMAKE=false \
218   AUTOHEADER=false \
219   MAKEINFO=false
220
221 # Detect format-string/arg-list mismatches that would normally be obscured
222 # by the use of _().  The --disable-nls effectively defines away that macro,
223 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
224 # treated as a failure.
225 TMPDIR ?= /tmp
226 t=$(TMPDIR)/$(PACKAGE)/test
227 my-distcheck: $(local-check)
228         -rm -rf $(t)
229         mkdir -p $(t)
230         GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
231         cd $(t)/$(distdir) \
232           && ./configure --disable-nls \
233           && $(MAKE) CFLAGS='-Wformat -Werror' \
234               AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)' \
235           && $(MAKE) dvi \
236           && $(MAKE) check \
237           && $(MAKE) distclean
238         (cd $(t) && mv $(distdir) $(distdir).old \
239           && $(AMTAR) -zxf - ) < $(distdir).tar.gz
240         diff -ur $(t)/$(distdir).old $(t)/$(distdir)
241         -rm -rf $(t)
242         @echo "========================"; \
243         echo "$(distdir).tar.gz is ready for distribution"; \
244         echo "========================"
245
246 tgz-md5 = $(shell md5sum < $(my_distdir).tar.gz|sed 's/  -//')
247 tgz-sha1 = $(shell sha1sum < $(my_distdir).tar.gz|sed 's/  -//')
248 bz2-md5 = $(shell md5sum < $(my_distdir).tar.bz2|sed 's/  -//')
249 bz2-sha1 = $(shell sha1sum < $(my_distdir).tar.bz2|sed 's/  -//')
250 xdelta-md5 = $(shell md5sum < $(xd-delta)|sed 's/  -//')
251 xdelta-sha1 = $(shell sha1sum < $(xd-delta)|sed 's/  -//')
252 tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([MkK]\).*/ \1B/')
253 bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([MkK]\).*/ \1B/')
254 xd-size = $(shell du --human $(xd-delta)|sed 's/\([MkK]\).*/ \1B/')
255
256 rel-check:
257         tarz=/tmp/rel-check-tarz-$$$$; \
258         md5_tmp=/tmp/rel-check-md5-$$$$; \
259         set -e; \
260         trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
261         wget -q --output-document=$$tarz $(url); \
262         echo "$(md5)  -" > $$md5_tmp; \
263         md5sum -c $$md5_tmp < $$tarz
264
265 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
266 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
267
268 signatures ?= $(distdir).tar.bz2.sig $(distdir).tar.gz.sig
269 %.sig: %
270         gpg --detach-sign $<
271
272 rel-files = $(xd-delta) $(distdir).tar.bz2 $(distdir).tar.gz $(signatures)
273 announcement: NEWS ChangeLog $(rel-files) $(signatures)
274         @./announce-gen                                                 \
275             --release-type=$(RELEASE_TYPE)                              \
276             --package=$(PACKAGE)                                        \
277             --prev=$(PREV_VERSION)                                      \
278             --curr=$(VERSION)                                           \
279             --release-archive-directory=$(release_archive_dir)          \
280             --news=NEWS                                                 \
281             $(addprefix --url-dir=, $(url_dir_list))                    \
282
283
284 ## ---------------- ##
285 ## Updating files.  ##
286 ## ---------------- ##
287
288 WGET = wget
289 ftp-gnu = ftp://ftp.gnu.org/gnu
290 www-gnu = http://www.gnu.org
291
292 # Use mv, if you don't have/want move-if-change.
293 move_if_change ?= move-if-change
294
295
296 # --------------------- #
297 # Updating everything.  #
298 # --------------------- #
299
300 .PHONY: update
301 local_updates ?= wget-update cvs-update po-update
302 update: $(local_updates)
303
304
305 # ------------------- #
306 # Updating PO files.  #
307 # ------------------- #
308
309 po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
310 .PHONY: do-po-update po-update
311 do-po-update:
312         tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
313         rm -rf $$tmppo && \
314         mkdir $$tmppo && \
315         (cd $$tmppo && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
316         cp $$tmppo/*.po po
317         cd po && $(MAKE) update-po
318         $(MAKE) po-check
319
320 po-update:
321         if test -d "po"; then \
322           $(MAKE) do-po-update; \
323         fi
324
325 # -------------------------- #
326 # Updating GNU build tools.  #
327 # -------------------------- #
328
329 # The following pseudo table associates a local directory and a URL
330 # with each of the files that belongs to some other package and is
331 # regularly updated from the specified URL.
332 wget_files ?= $(srcdir)/config/config.guess \
333               $(srcdir)/config/config.sub \
334               $(srcdir)/src/ansi2knr.c \
335               $(srcdir)/config/texinfo.tex
336 get-targets = $(patsubst %, get-%, $(wget_files))
337
338 config.guess-url_prefix = $(ftp-gnu)/config/
339 config.sub-url_prefix = $(ftp-gnu)/config/
340
341 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
342
343 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
344
345 standards.texi-url_prefix = $(www-gnu)/prep/
346 make-stds.texi-url_prefix = $(standards.texi-url_prefix)
347
348 target = $(patsubst get-%, %, $@)
349 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
350
351 .PHONY: $(get-targets)
352 $(get-targets):
353         $(WGET) $(url) -O $(target).t \
354           && $(move_if_change) $(target).t $(target)
355
356 cvs_files ?= $(srcdir)/config/depcomp $(srcdir)/config/missing \
357              $(srcdir)/config/mkinstalldirs \
358              $(srcdir)/config/install-sh $(srcdir)/src/ansi2knr.c
359 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
360 .PHONY: wget-update
361 wget-update: $(get-targets)
362
363 .PHONY: cvs-update
364 cvs-update:
365         fail=;                                                          \
366         for f in $(cvs_files); do                                       \
367           test -f $$f || { echo "*** skipping $$f" 1>&2; continue; };   \
368           cvs diff $$f > /dev/null                                      \
369             || { echo "*** $$f is locally modified; skipping it" 1>&2;  \
370                  fail=yes; continue; };                                 \
371           file=$$(basename $$f);                                        \
372           echo checking out $$file...;                                  \
373           $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t   \
374             && $(move_if_change) $$f.t $$f;                             \
375         done;                                                           \
376         test "$$fail" && exit 1
377
378 define emit-upload-commands
379         echo =====================================
380         echo =====================================
381         echo upload $(PACKAGE) $(PREV_VERSION) $(VERSION)
382         echo '# send the /tmp/announcement e-mail'
383         echo =====================================
384         echo =====================================
385 endef
386
387 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
388         xdelta delta -9 $^ $@ || :
389
390 .PHONY: alpha beta major
391 alpha beta major: $(local-check)
392         $(MAKE) cvs-dist
393         $(MAKE) $(xd-delta)
394         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
395         ln $(rel-files) $(release_archive_dir)
396         chmod a-w $(rel-files)
397         echo $(VERSION) > $(prev_version_file)
398         $(CVS) ci -m. $(prev_version_file)
399         @$(emit-upload-commands)