blob: 8447221548cf53c1f405c03729370123aa08f428 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
* prepare the environment
#+BEGIN_SRC sh
guix environment -l guix.scm
#+END_SRC
* build things
To render WAV files for all the songs:
#+BEGIN_SRC sh
make
#+END_SRC
To build the bass part for just “Circus”:
#+BEGIN_SRC sh
make 03-circus/parts/bass.pdf
#+END_SRC
To build a drum guide track with click:
#+BEGIN_SRC sh
make guide
#+END_SRC
When the environment variable =LILYPOND_USE_CHORDS= is set a simplified chord track is rendered for use as a drum guide.
|