summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-04-30 00:11:00 +0200
committerRicardo Wurmus <rekado@elephly.net>2017-04-30 00:11:00 +0200
commitabc3800e48172345f260ab1d2a3849f646526458 (patch)
tree0b1da285c2412585887e308348bb1f9e03beec3e
parent71229f07e891d1281de85e8c340bbc09c88da6cc (diff)
Makefile: remove guide track rule.
There's no point in a single concatenated guide track.
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index c9db328..045d335 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,9 @@ LILY_CMD = LILYPOND_USE_CHORDS=$(LILYPOND_USE_CHORDS) lilypond -dinclude-setting
SUBDIRS := 01-song1 02-song2 03-circus 04-white-noise
all: $(SUBDIRS)
-guide: guide.wav
-guide.wav: $(addsuffix /guide.wav,$(SUBDIRS))
- sox --combine concatenate $(sort $^) $@
+
clean:
- - rm guide.wav $(wildcard */guide.wav) $(wildcard $(addsuffix /*.wav,$(SUBDIRS)))
+ - rm $(wildcard */guide.wav) $(wildcard $(addsuffix /*.wav,$(SUBDIRS)))
- rm $(wildcard */*.ogg)
NAME := 01-song1
@@ -24,7 +22,5 @@ include rules.mk
NAME := 04-white-noise
include rules.mk
-upload-guide: guide.wav
- scp guide.wav elephly.net:~/elephly.net/secret/band/guide.wav
.PHONY: $(SUBDIRS) clean