]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/bin/make-version.sh
patch::: 1.2.1.mb1: Re: forceHorizontalShift problem
[lilypond.git] / stepmake / bin / make-version.sh
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]*\([^ \t]*\)[ \t]*$/#define \1 \"\2\"/g' 
12 echo
13