diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-02-24 20:43:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-02-24 20:56:35 +0100 |
commit | 080c3da53a8264a413beaaad2550437a97342e28 (patch) | |
tree | 191604569b42d29a194509d7da447cc1ca8a3648 | |
parent | 3b1a55647bf4dd4831ac51414a23db043e159e0e (diff) |
Change relative paths.
-rw-r--r-- | 01-song1/music/stick.ly | 2 | ||||
-rw-r--r-- | 02-song2/music/stick.ly | 2 | ||||
-rw-r--r-- | 03-circus/music/stick.ly | 2 | ||||
-rw-r--r-- | 04-white-noise/music/stick.ly | 2 | ||||
-rw-r--r-- | rules.mk | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/01-song1/music/stick.ly b/01-song1/music/stick.ly index 66f9460..6f6bd54 100644 --- a/01-song1/music/stick.ly +++ b/01-song1/music/stick.ly @@ -1,4 +1,4 @@ -\include "../stafftab.ly" +\include "../../stafftab.ly" stickIntroLeft = \relative c, { r8 b-1\8\f cis-4\8 r \parenthesize <cis'-1\10 gis'-1\11>\pp r <cis-1\10 gis'-1\11>\f cis,-4\8 | diff --git a/02-song2/music/stick.ly b/02-song2/music/stick.ly index 4815944..adfcfb8 100644 --- a/02-song2/music/stick.ly +++ b/02-song2/music/stick.ly @@ -1,4 +1,4 @@ -\include "../stafftab.ly" +\include "../../stafftab.ly" \include "../music/guitar.ly" stickBreak = \unfoldRepeats \guitar diff --git a/03-circus/music/stick.ly b/03-circus/music/stick.ly index 0fef7cf..077c787 100644 --- a/03-circus/music/stick.ly +++ b/03-circus/music/stick.ly @@ -1,4 +1,4 @@ -\include "../stafftab.ly" +\include "../../stafftab.ly" stickA = \relative c'' { g8 gis-. g-. gis-. | a-. gis16 g8.-. gis8-. | diff --git a/04-white-noise/music/stick.ly b/04-white-noise/music/stick.ly index 8445aec..56b6d73 100644 --- a/04-white-noise/music/stick.ly +++ b/04-white-noise/music/stick.ly @@ -1,4 +1,4 @@ -\include "../stafftab.ly" +\include "../../stafftab.ly" stickIntro = { \time 4/4 { R1*8 } @@ -4,13 +4,13 @@ $(NAME)/$(NAME).wav: $(NAME)/$(NAME).midi fluidsynth -r 48000 -F $@ -l -R no -i -n -a alsa $(SOUNDFONT) $< $(NAME)/parts/%.pdf: $(NAME)/parts/%.ly $(NAME)/music/%.ly - $(LILY_CMD) $< + $(LILY_CMD) --output=$(dir $@) $< $(NAME)/$(NAME).pdf: $(NAME)/$(NAME).ly $(wildcard $(NAME)/music/*.ly) - $(LILY_CMD) $< + $(LILY_CMD) --output=$(dir $@) $< $(NAME)/$(NAME).midi: $(NAME)/$(NAME).ly $(wildcard $(NAME)/music/*.ly) - $(LILY_CMD) $< + $(LILY_CMD) --output=$(dir $@) $< $(NAME)/$(NAME)-klick-mono.wav: $(NAME)/$(NAME).tempo klick -W $@ -f $< |