summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@civ.zcu.cz>2014-12-11 19:36:03 +0100
committerFrantišek Dvořák <valtri@civ.zcu.cz>2014-12-11 19:36:39 +0100
commitd4cf5d4513d37691b82833e95f0f4499ec77e057 (patch)
treecbb0487ca49e4bae6f5782460d450e0333207201 /Makefile
parent615f01659b2b413a64beff776e4ebb4ef6c805e2 (diff)
downloadcodecs-testing-mingw-d4cf5d4513d37691b82833e95f0f4499ec77e057.tar.gz
codecs-testing-mingw-d4cf5d4513d37691b82833e95f0f4499ec77e057.tar.xz
codecs-testing-mingw-d4cf5d4513d37691b82833e95f0f4499ec77e057.zip
Support for using utility.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 07e705a..3fbfdc7 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,12 @@ TARGETS=flac libmad libmad32 speex wavpack
all: $(TARGETS)
clean:
- for t in $(TARGETS); do rm -fv $${t}/$${t}.sh; done
+ 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)