]> git.donarmstrong.com Git - lilypond.git/blob - bin/make-version
d8e79346cdddbb99f0fb7b99744de0052a8b4f73
[lilypond.git] / bin / make-version
1 #!/bin/sh
2
3 #shift;
4 if test "x$1" = x;
5 then
6     versionfile="VERSION"
7 else
8     versionfile=$1;
9 fi
10
11 cat $versionfile| sed 's/#.*$//g'|sed 's/\([^ ]*\)[\t ]*=[ \t]*\([^ ]*\)$/#define \1 \"\2\"/g' 
12 echo
13 if [ -z $CXX ]
14 then
15     COMPILER=unknown
16 else
17     COMPILER="$CXX `$CXX --version`"
18 fi
19
20 echo "#define COMPILER "\"$COMPILER\"