2001-04-17 12:12:05 +00:00
|
|
|
#
|
|
|
|
# gendef filename var=val var=val ...
|
|
|
|
#
|
|
|
|
# This script is used to generate src/include/defs.h
|
|
|
|
#
|
1996-09-07 16:18:32 +00:00
|
|
|
|
|
|
|
file=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
defs="#define $1"
|
|
|
|
shift
|
|
|
|
for def
|
|
|
|
do
|
|
|
|
defs="$defs
|
|
|
|
#define $def"
|
|
|
|
done
|
|
|
|
|
2000-12-05 18:49:44 +00:00
|
|
|
# Use $TMPDIR if defined. Default to cwd, for non-Unix systems
|
|
|
|
# which don't have /tmp on each drive (we are going to remove
|
|
|
|
# the file before we exit anyway). Put the PID in the basename,
|
|
|
|
# since the extension can only hold 3 characters on MS-DOS.
|
|
|
|
t=${TMPDIR-.}/gro$$.tmp
|
1996-09-07 16:18:32 +00:00
|
|
|
|
|
|
|
sed -e 's/=/ /' >$t <<EOF
|
|
|
|
$defs
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test -r $file && cmp -s $t $file || cp $t $file
|
|
|
|
|
|
|
|
rm -f $t
|
|
|
|
|
|
|
|
exit 0
|
2001-04-17 12:12:05 +00:00
|
|
|
|
|
|
|
# eof
|