]> git.donarmstrong.com Git - lilypond.git/blob - make_version
release: 0.0.1
[lilypond.git] / make_version
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'