diff options
Diffstat (limited to 'contrib/gdiffmk/gdiffmk.am')
-rw-r--r-- | contrib/gdiffmk/gdiffmk.am | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/contrib/gdiffmk/gdiffmk.am b/contrib/gdiffmk/gdiffmk.am new file mode 100644 index 0000000..46f224b --- /dev/null +++ b/contrib/gdiffmk/gdiffmk.am @@ -0,0 +1,59 @@ +# Automake rules for 'gdiffmk' (integration into the groff source tree) +# +# Copyright (C) 2004-2020 Free Software Foundation, Inc. +# Written by Mike Bianchi <MBianchi@Foveal.com <mailto:MBianchi@Foveal.com>> +# Automake migration by Bertrand Garrigues +# +# This file is part of the gdiffmk utility, which is part of groff. +# +# groff 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 3 of the License, or +# (at your option) any later version. + +# groff 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, see <http://www.gnu.org/licenses/>. + +######################################################################## +gdiffmk_srcdir = $(top_srcdir)/contrib/gdiffmk +bin_SCRIPTS += gdiffmk +TESTS += contrib/gdiffmk/tests/runtests.sh +man1_MANS += contrib/gdiffmk/gdiffmk.1 +EXTRA_DIST += \ + contrib/gdiffmk/gdiffmk.1.man \ + contrib/gdiffmk/ChangeLog \ + contrib/gdiffmk/README \ + contrib/gdiffmk/gdiffmk.sh \ + contrib/gdiffmk/tests/runtests.sh \ + contrib/gdiffmk/tests/baseline \ + contrib/gdiffmk/tests/baseline.6 \ + contrib/gdiffmk/tests/baseline.6a \ + contrib/gdiffmk/tests/baseline.7 \ + contrib/gdiffmk/tests/baseline.8 \ + contrib/gdiffmk/tests/baseline.9 \ + contrib/gdiffmk/tests/baseline.9a \ + contrib/gdiffmk/tests/baseline.10 \ + contrib/gdiffmk/tests/file1 \ + contrib/gdiffmk/tests/file2 + +gdiffmk: $(gdiffmk_srcdir)/gdiffmk.sh + $(AM_V_GEN)sed -e "s|[@]BINDIR[@]|$(bindir)|g" \ + -e "s|[@]VERSION[@]|$(VERSION)|g" \ + -e "s|[@]HAVE_TEST_EF_OPTION[@]|$(HAVE_TEST_EF_OPTION)|g" \ + -e "s|[@]BASH_PROG[@]|$(BASH_PROG)|g" \ + -e "s|[@]DIFF_PROG[@]|$(DIFF_PROG)|g" \ + -e $(SH_SCRIPT_SED_CMD) $(gdiffmk_srcdir)/gdiffmk.sh \ + >$@ \ + && chmod +x $@ + + +# Local Variables: +# mode: makefile-automake +# fill-column: 72 +# End: +# vim: set autoindent filetype=automake textwidth=72: |