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

all: $(TARGETS)

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

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

.PHONY: $(TARGETS)