Imported Upstream version 1.23.0
[platform/upstream/groff.git] / gendef.sh
1 #! /bin/sh
2 #
3 # Copyright (C) 1991-2020 Free Software Foundation, Inc.
4
5 # This file is part of groff.
6
7 # groff is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free
9 # Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 # for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 #
21 # gendef filename var=val var=val ...
22 #
23 # This script is used to generate src/include/defs.h.
24 #
25 file=$1
26 shift
27
28 defs="#define $1"
29 shift
30 for def
31 do
32         defs="$defs
33 #define $def"
34 done
35
36 # Use $TMPDIR if defined.  Default to cwd, for non-Unix systems
37 # which don't have /tmp on each drive (we are going to remove
38 # the file before we exit anyway).  Put the PID in the basename,
39 # since the extension can only hold 3 characters on MS-DOS.
40 t=${TMPDIR-.}/gro$$.tmp
41
42 sed -e 's/=/ /' >$t <<EOF
43 $defs
44 EOF
45
46 test -r $file && cmp -s $t $file || cp $t $file
47
48 rm -f $t
49
50 exit 0
51
52 # eof