Output redirection now handles symlinks
[opus_libre.git] / main.ly
blob0aea55e5879abb65addebdff86a5e3581a50de6d
1 %------------------------------------------------------------------%
2 % opus_libre -- main.ly %
3 % %
4 % (c) 2008-2011 Valentin Villenave <valentin@villenave.net> %
5 % %
6 % opus_libre is a free framework for GNU LilyPond: you may %
7 % redistribute it and/or modify it under the terms of the GNU %
8 % General Public License as published by the Free Software %
9 % Foundation, either version 3 of the License, or (at your option) %
10 % any later version. %
11 % This program is distributed WITHOUT ANY WARRANTY; without %
12 % even the implied warranty of MERCHANTABILITY or FITNESS FOR A %
13 % PARTICULAR PURPOSE. You should have received a copy of the GNU %
14 % General Public License along with this program (typically in the %
15 % share/doc/ directory). If not, see http://www.gnu.org/licenses/ %
16 % %
17 %------------------------------------------------------------------%
20 % Entry point for scores compilation.
23 \version "2.19"
25 %%%%%%%%%%%%%%%%%%%%%%%% Language selection %%%%%%%%%%%%%%%%%%%%%%%%
27 %% Source code language (see locale/ ) ----------------------------%
28 %input = "en"
30 %% Edition localisation (if different) ----------------------------%
31 %edition = "fr"
33 %%%%%%%%%%%%%%%%%%%%%%%%%% Score selection %%%%%%%%%%%%%%%%%%%%%%%%%
35 %% Source code directory (see scores/ ) ---------------------------%
36 scores = "free"
37 % Setting this option overrides the scores variable with
38 % the name of the current git branch.
39 #(ly:set-option 'git-branch-as-score-name #t)
41 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% Optional %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 %% Skeleton (see etc/skel/ ) --------------------------------------%
44 skel = "song"
46 %% Graphic theme (see share/themes/ ) -----------------------------%
47 theme = "default"
49 structure = #'("")
51 %lyricsSuffix = "Texte"
53 %%%%%%%%%%%%%%%%%%%%%%%%%%% Main include %%%%%%%%%%%%%%%%%%%%%%%%%%%
55 %% Automatic functions inclusion, do not edit ---------------------%
56 \include "lib/include.ly"
58 %% Select edition or instrument -----------------------------------%
60 % (e.g. "fullscore", "pianoscore" or any instrument name)
61 \make #"all"
63 %%-----------------------------------------------------------------%