]> git.donarmstrong.com Git - lilypond.git/blob - bin/conflily
release: 0.0.70pre
[lilypond.git] / bin / conflily
1 #!/bin/bash
2 # conflily
3 # ugh: must be executed from lilypond-x.x.x (bin/conflily)
4
5 root=$HOME
6 lelie=music/lily
7
8 if [ ! -e $root/lelie ]
9 then
10         echo ln -s $root/$lelie/current $root/lelie
11         ln -s $root/$lelie/current $root/lelie
12 fi
13
14 rm $root/$lelie/current >& /dev/null
15 current=`basename \`pwd\``
16 echo ln -s $root/$lelie/$current $root/$lelie/current
17 ln -s $root/$lelie/$current $root/$lelie/current
18
19 ln -sf $root/lelie/lily/out/lilypond bin/lilypond
20 ln -sf $root/lelie/mi2mu/out/mi2mu bin/mi2mu
21
22 if [ "x$LILYINCLUDE" = "x" ]
23 then
24         export LILYINCLUDE=$root/lelie/init
25 fi
26
27 configure --prefix=$root --enable-debugging --enable-printing --enable-checking
28