summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/scripts/mkver.in
blob: 79d83f83993d3a93167682028822b0f8d95c42d5 (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
25
26
27
28
29
30
31
#!@PATH_SH@
PROG=${1-UNKNOWN}

ConfStr="$PROG"

case "@LIBRSAREF@" in
 '') ;;
 *)  ConfStr="$ConfStr RSAREF" ;;
esac

ConfStr="$ConfStr @VERSION@ `date`"

if [ ! -f .version ]; then
  echo 0 > .version
fi
RUN="`cat .version`"
RUN="`expr $RUN + 1`"
echo $RUN > .version

ConfStr="$ConfStr (${RUN})"

echo "Version <${ConfStr}>";

rm -f version.c
cat > version.c << -EoF-
/*
 * version file for $PROG
 */
#include <config.h>
const char * Version = "${ConfStr}";
-EoF-
OpenPOWER on IntegriCloud