summaryrefslogtreecommitdiff
path: root/Makefile
blob: 46cf2930783d694fdf73abfa312e4871383841f7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SUBDIRS := $(wildcard 0*/)

all : $(SUBDIRS)

guide: guide.wav
guide.wav: $(addsuffix guide.wav,$(SUBDIRS)) | all
	sox --combine concatenate $(sort $^) $@

$(SUBDIRS) :
	$(MAKE) -C $@

.PHONY : all $(SUBDIRS)