summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 3fbfdc77ef735e6b926db6f3ac1be8311fcc1fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TARGETS=flac libmad libmad32 speex wavpack

all: $(TARGETS)

clean:
	for t in $(TARGETS); do rm -fv $${t}/$${t}.sh $${t}/$${t}-parallel.sh; done

$(TARGETS):
	PERLLIB=$$PRERLLIB:combiner combiner/$@.pl > $@/$@.sh
	chmod +x $@/$@.sh
	PERLLIB=$$PRERLLIB:combiner combiner/$@.pl --parallel > $@/$@-parallel.sh
	chmod +x $@/$@-parallel.sh

.PHONY: $(TARGETS)