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.35
[lilypond.git]
/
flower
/
make_version
blob
f584d272a967d0c39510bbad66260c0c4e0dd494
1
#!/bin/sh
2
3
echo
'#ifndef FVERSION_HH'
4
echo
'#define FVERSION_HH'
5
6
echo
'#define FMAJORVERSION '
$1
7
echo
'#define FMINORVERSION '
$2
8
echo
'#define FPATCHLEVEL '
$3
9
echo
'#define FVERSIONSTR "'
$1
.
$2
.
$3
'"'
10
echo
'#define FCOMPILER "'
$4
'"'
11
echo
'#endif'