lilypond-0.0.4
[lilypond.git] / make_version
blob5098f79f1dac681710002891e9b6a4247e8a7392
1 #!/bin/sh
2 echo '#ifndef VERSION_HH'
3 echo '#define VERSION_HH'
4 echo '#define MAJORVERSION ' $1
5 echo '#define MINORVERSION ' $2
6 echo '#define PATCHLEVEL ' $3
7 echo '#define VERSIONSTR "'$1.$2.$3'"'
8 echo '#endif'