repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.39
[lilypond.git]
/
make_version
blob
188855e0f977fe5f8410a77c0e86311821c82b64
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
'#define COMPILER "'
$4
'"'
9
echo
'#endif'