summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAntti Ajanki <antti.ajanki@iki.fi>2011-04-17 13:29:41 +0300
committerAntti Ajanki <antti.ajanki@iki.fi>2011-04-17 13:29:41 +0300
commitcff257c3a082608e4b91313b79f73020f14e6e53 (patch)
treecdc7295a510fe3f6cf9057a949ec2cf244f04364 /Makefile
parent195747fe7a354bbd9b439203b3fb9a0f56bd1ebe (diff)
downloadvdr-plugin-webvideo-cff257c3a082608e4b91313b79f73020f14e6e53.tar.gz
vdr-plugin-webvideo-cff257c3a082608e4b91313b79f73020f14e6e53.tar.bz2
Fix testdownload, "make check" executes unittests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4e54ee6..8d411e7 100644
--- a/Makefile
+++ b/Makefile
@@ -89,6 +89,11 @@ dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@echo Distribution package created as $(PACKAGE).tgz
+check:
+ make -C src/unittest check
+
+test: check
+
clean:
$(MAKE) -C src/vdr-plugin clean
$(MAKE) -C src/libwebvi clean
@@ -97,4 +102,4 @@ clean:
find . -name "*~" -exec rm {} \;
find . -name "*.pyc" -exec rm {} \;
-.PHONY: vdr-plugin libwebvi build-python install install-vdr-plugin install-webvi dist clean
+.PHONY: vdr-plugin libwebvi build-python install install-vdr-plugin install-webvi dist clean check test