📄 makefile.maint
字号:
# -*-Makefile-*-# This Makefile fragment is shared between the coreutils,# CPPI, Bison, and Autoconf.## Copyright (C) 2001, 2002, 2003, 2004 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 2, 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, write to the Free Software## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA## 02111-1307, USA.# This is reported not to work with make-3.79.1# ME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))ME := Makefile.maint# Do not save the original name or timestamp in the .tar.gz file.GZIP_ENV = \ "--no-name --best$$( \ case $$(gzip --help) in \ (*--rsyncable*) echo ' --rsyncable';; \ esac \ )"CVS = cvsifeq ($(origin prev_version_file), undefined) prev_version_file = .prev-versionendifPREV_VERSION := $(shell cat $(prev_version_file))tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')tag-this-version = $(subst .,_,$(VERSION))this-cvs-tag = $(tag-package)-$(tag-this-version)my_distdir = $(PACKAGE)-$(VERSION)# Old releases are stored here.# Used for diffs and xdeltas.release_archive_dir ?= ../release# Prevent programs like 'sort' from considering distinct strings to be equal.# Doing it here saves us from having to set LC_ALL elsewhere in this file.export LC_ALL = C## --------------- #### Sanity checks. #### --------------- ### Checks that don't require cvs.# Run `changelog-check' last, as previous test may reveal problems requiring# new ChangeLog entries.local-checks-available = \ po-check copyright-check writable-files m4-check author_mark_check \ changelog-check strftime-check syntax-check makefile_path_separator_check \ makefile-check.PHONY: $(local-checks-available)local-check = $(filter-out $(local-checks-to-skip), $(local-checks-available))# Make sure C source files in src/ don't include xalloc.h directly,# since they all already include it via sys2.h.# It's not a big deal -- just aesthetics..PHONY: $(syntax-check-rules)syntax-check-rules = \ sc_cast_of_argument_to_free \ sc_cast_of_x_alloc_return_value \ sc_changelog \ sc_error_exit_success \ sc_space_tab \ sc_sun_os_names \ sc_system_h_headers \ sc_unmarked_diagnostics \ sc_xalloc_h_in_srcsyntax-check: $(syntax-check-rules)# @grep -E '# *include <(limits|std(def|arg|bool))\.h>' \# $$(find -type f -name '*.[chly]') && \# { echo '$(ME): found conditional include' 1>&2; \# exit 1; } || :# grep -E '^# *include <(string|stdlib)\.h>' \# $(srcdir)/{lib,src}/*.[chy] && \# { echo '$(ME): FIXME' 1>&2; \# exit 1; } || :# FIXME: don't allow `#include .strings\.h' anywhere# Look for diagnostics that aren't marked for translation.# This won't find any for which error's format string is on a separate line.sc_unmarked_diagnostics: @grep --exclude=$(srcdir)/src/shred.c -E \ '\<error \([^"]*"[^"]*[a-z]{3}' $(srcdir)/{lib,src}/*.c \ | grep -v '_(' && \ { echo '$(ME): found unmarked diagnostic(s)' 1>&2; \ exit 1; } || :sc_cast_of_argument_to_free: @grep -E '\<free \(\(' $(srcdir)/{lib,src}/*.[chly] && \ { echo '$(ME): don'\''t cast free argument' 1>&2; \ exit 1; } || :sc_cast_of_x_alloc_return_value: @grep -E --exclude=$(srcdir)/lib/regex.c \ '\*\) *x(m|c|re)alloc\>' $(srcdir)/{lib,src}/*.[chy] && \ { echo '$(ME): don'\''t cast x*alloc return value' 1>&2; \ exit 1; } || :sc_space_tab: @( cvsu --list ) > /dev/null 2>&1 || : && \ grep '[ ] ' \ $$(cvsu --list | grep -vEf .x-$@ ) && \ { echo '$(ME): found SPACE-TAB sequence; remove the SPACE' \ 1>&2; exit 1; } || :# Using EXIT_SUCCESS as the first argument to error is misleading,# since when that parameter is 0, error does not exit. Use `0' instead.sc_error_exit_success: @grep -F 'error (EXIT_SUCCESS,' \ $$(find -type f -name '*.[chly]') && \ { echo '$(ME): found error (EXIT_SUCCESS' 1>&2; \ exit 1; } || :# FIXME: merge this with sc_system_h_headers below.# xalloc.h is included via system.h, so should not be included# directly by any file in src/.sc_xalloc_h_in_src: @if test -f $(srcdir)/src/sys2.h; then \ if grep 'xalloc\.h' $(srcdir)/src/*.c; then \ exit 1; \ fi; \ fi# FIXME: warn about definitions of EXIT_FAILURE, EXIT_SUCCESS, STREQ# Each nonempty line must start with a year number, or a TAB.sc_changelog: @grep '^[^12 ]' $$(find . -name ChangeLog -maxdepth 2) && \ { echo '$(ME): found unexpected prefix in a ChangeLog' 1>&2; \ exit 1; } || :header_regexp = \ alloca\ |closeout\ |ctype\ |dirent\ |errno\ |fcntl\ |inttypes\ |limits\ |locale\ |pathmax\ |std(lib|bool)\ |string\ |sys/(stat|dir|time)\ |time\ |unistd\ |utime\ |version-etc\ |xalloch_re := $(shell echo '$(header_regexp)'|tr -d ' ')# Files in src/ should not include directly any of# the headers already included via system.h.# Get list of candidates with this:# grep -h include src/sys*.h|sed 's/.*include //'|sort -sc_system_h_headers: @( cvsu --list ) > /dev/null 2>&1 || : && \ grep -E '^# *include ["<]($(h_re))\.h[">]' \ $$(cvsu --list src | grep -Ev 'sys(2|tem)\.h$$') \ && { echo '$(ME): the above are already included via system.h'\ 1>&2; exit 1; } || :sc_sun_os_names: @( cvsu --list ) > /dev/null 2>&1 || : && \ grep -Ei \ 'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \ $$(cvsu --list | grep -vEf .x-$@ ) && \ { echo '$(ME): found misuse of Sun OS version numbers' 1>&2; \ exit 1; } || :# Ensure that date's --help output stays in sync with the info# documentation for GNU strftime. The only exception is %N,# which date accepts but GNU strftime does not.extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'strftime-check: if test -f $(srcdir)/src/date.c; then \ grep '^ %. ' $(srcdir)/src/date.c | sort \ | $(extract_char) > $@-src; \ { echo N; \ info libc date calendar format | grep '^ `%.'\' \ | $(extract_char); } | sort > $@-info; \ diff -u $@-src $@-info || exit 1; \ rm -f $@-src $@-info; \ fi# Ensure that we use only the standard $(VAR) notation,# not @...@ in Makefile.am, now that we can rely on automake# to emit a definition for each substituted variable.makefile-check: grep -E '@[A-Z_0-9]+@' `find . -name Makefile.am` \ && { echo 'Makefile.maint: use $(...), not @...@' 1>&2; exit 1; } || :changelog-check: if head ChangeLog | grep 'Version $(VERSION)' >/dev/null; then \ :; \ else \ echo "$(VERSION) not in ChangeLog" 1>&2; \ exit 1; \ fim4-check: @grep 'AC_DEFUN([^[]' m4/*.m4 \ && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \ exit 1; } || :# Verify that all source files using _() are listed in po/POTFILES.in.po-check: if test -f po/POTFILES.in; then \ grep -E -v '^(#|$$)' po/POTFILES.in | sort > $@-1; \ files=; \ for file in lib/*.[chly] src/*.[chly]; do \ case $$file in \ *.[ch]) \ base=`expr " $$file" : ' \(.*\)\..'`; \ { test -f $$base.l || test -f $$base.y; } && continue;; \ esac; \ files="$$files $$file"; \ done; \ grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort > $@-2; \ diff -u $@-1 $@-2 || exit 1; \ rm -f $@-1 $@-2; \ fi# In a definition of #define AUTHORS "... and ..." where the RHS contains# the English word `and', the string must be marked with `N_ (...)' so that# gettext recognizes it as a string requiring translation.author_mark_check: @grep '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \ { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \ exit 1; } || :# Sometimes it is useful to change the PATH environment variable# in Makefiles. When doing so, it's better not to use the Unix-centric# path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.# It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,# and there probably aren't many projects with so many Makefile.am files# that we'd have to worry about limits on command line length.msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -