diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-04-30 00:11:00 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-04-30 00:11:00 +0200 |
commit | abc3800e48172345f260ab1d2a3849f646526458 (patch) | |
tree | 0b1da285c2412585887e308348bb1f9e03beec3e | |
parent | 71229f07e891d1281de85e8c340bbc09c88da6cc (diff) |
Makefile: remove guide track rule.
There's no point in a single concatenated guide track.
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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 |