diff options
-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 |