blob: fa8834d9ba6e99424a1eb9b4f1e10c731e459659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh -
# $Id$
#
# Build the automatically generated API flag #defines.
msgc="/* DO NOT EDIT: automatically built by dist/s_apiflags. */"
b=/tmp/api_flags_binary
t=/tmp/__db_a
trap 'rm -f $b $t; exit 0' 0
trap 'rm -f $b $t; exit 1' 1 2 3 13 15
cc api_flags.c -o $b || {
echo 's_apiflags: unable to compile api_flags.c'
exit 1
}
(echo "$msgc"
$b < api_flags) > $t
f=../dbinc_auto/api_flags.in
cmp $f $t > /dev/null 2>&1 ||
(echo "Building $f" && rm -f $f && cp $t $f && chmod 444 $f)
|