1 # GNU Makefile for gnulib central.
2 # Copyright (C) 2006, 2009-2011 Free Software Foundation, Inc.
4 # Copying and distribution of this file, with or without modification,
5 # in any medium, are permitted without royalty provided the copyright
6 # notice and this notice are preserved.
8 # This Makefile requires the use of GNU make. Some targets require
9 # that you have tools like git, makeinfo and cppi installed.
11 # Required for the use of <(...) below.
14 # Produce some files that are not stored in the repository.
17 # Produce the documentation in readable form.
19 cd doc && $(MAKE) $@ && $(MAKE) mostlyclean
21 # Collect the names of rules starting with `sc_'.
22 syntax-check-rules := $(sort $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p'\
25 # Perform some platform independent checks on the gnulib code.
26 check: $(syntax-check-rules)
28 sc_prefer_ac_check_funcs_once:
29 if test -d .git; then \
30 git grep -w -l AC_CHECK_FUNCS modules \
31 && { echo use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS \
32 in modules/ 1>&2; exit 1; } || : \
35 sc_prohibit_leading_TABs:
36 if test -d .git; then \
37 git grep -l '^ * ' lib m4 tests \
38 | grep -Ev '^lib/reg|Makefile|test-update-copyright' \
40 && { printf '*** %s\n' 'indent with spaces, not TABs;' \
41 1>&2; exit 1; } || : \
44 sc_prohibit_augmenting_PATH_via_TESTS_ENVIRONMENT:
45 if test -d .git; then \
46 url=http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/22874; \
47 git grep '^[ ]*TESTS_ENVIRONMENT += PATH=' modules \
48 && { printf '%s\n' 'Do not augment PATH via TESTS_ENVIRONMENT;' \
49 " see <$$url>" 1>&2; exit 1; } || : \
52 # Files in m4/ that (exceptionally) may use AC_LIBOBJ.
53 # Do not include their ".m4" suffix.
76 allow_AC_LIBOBJ_or := $(shell echo $(allow_AC_LIBOBJ) | tr -s ' ' '|')
78 sc_prohibit_AC_LIBOBJ_in_m4:
79 url=http://article.gmane.org/gmane.comp.lib.gnulib.bugs/26995; \
80 if test -d .git; then \
82 | grep -Ev '^m4/($(allow_AC_LIBOBJ_or))\.m4$$' \
83 | xargs grep '^ *AC_LIBOBJ(' \
84 && { printf '%s\n' 'Do not use AC_LIBOBJ in m4/*.m4;' \
85 "see <$$url>"; exit 1; } || :; \
89 if test -d .git; then \
90 git ls-files|grep '\.in\.h$$' \
91 | xargs grep -l '^@PRAGMA_SYSTEM_HEADER@' \
92 | xargs grep -L '^@PRAGMA_COLUMNS@' \
95 'the files listed above use @PRAGMA_SYSTEM_HEADER@' \
96 'without also using @PRAGMA_COLUMNS@' 1>&2; \
100 # Verify that certain (for now, only Jim Meyering and Eric Blake's)
101 # *.c files are consistently cpp indented.
103 ./gnulib-tool --extract-filelist \
104 $$(cd ./modules; grep -ilrE '(meyering|blake)' .) \
107 | grep -vE '/(stdio-(read|write)|getloadavg)\.c$$' \
110 # Ensure that the list of symbols checked for by the
111 # sc_prohibit_intprops_without_use rule match those in the actual file.
112 # Extract the symbols from the .h file and compare with the list of
113 # symbols extracted from the rule in maint.mk.
116 diff -u <(perl -lne '/^# *define ([A-Z]\w+)\(/ and print $$1' $$i|fmt) \
117 <(sed -n /^_intprops_name/,/^_intprops_syms_re/p top/maint.mk \
118 |sed '/^_/d;s/^ //;s/ *\\$$//')
120 # Regenerate some files that are stored in the repository.
123 # MODULES.html is periodically being generated and copied to the web pages at
124 # :ext:USER@cvs.savannah.gnu.org:/web/gnulib/gnulib/
125 # where it then appears at <http://www.gnu.org/software/gnulib/MODULES.html>.
126 MODULES.html: MODULES.html.sh
127 ./MODULES.html.sh > MODULES.html
129 # Run this rule once per year (usually early in January)
130 # to update all FSF copyright year lists here.
131 # We exclude the files listed in srclist.txt (maintained elsewhere)
132 # as well as those in tests/unictype (generated).
133 # Also exclude any file that includes the "GENERATED AUTOMATICALLY" comment,
134 # being careful not to exclude code that merely generates the comment.
135 # Also exclude doc/INSTALL*, since they too are generated.
138 grep -v '^#' config/srclist.txt|grep -v '^$$' \
139 | while read src dst; do \
140 test -f "$$dst" && { echo "$$dst"; continue; }; \
141 test -d "$$dst" || continue; \
142 echo "$$dst"/$$(basename "$$src"); \
144 git ls-files tests/unictype >> $$exempt; \
145 git ls-files doc/INSTALL* >> $$exempt; \
146 git ls-files | grep -vFf $$exempt \
147 | xargs grep -L '^/\*.*GENERATED AUTOMATICALLY' \
148 | UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79 \
149 UPDATE_COPYRIGHT_USE_INTERVALS=1 \
150 xargs build-aux/update-copyright