summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Günther <tom@toms-cafe.de>2010-03-31 02:14:29 +0200
committerThomas Günther <tom@toms-cafe.de>2010-03-31 02:14:29 +0200
commitaf0346136a10e4cabebfc5ccd2e7899a0ad49a43 (patch)
treec193584affa0622dbaffd0c42e803e3562d6b244 /Makefile
parent60d4d142b46e0d03bd05af356c1c5ce4ad0f60b4 (diff)
downloadvdr-plugin-sudoku-af0346136a10e4cabebfc5ccd2e7899a0ad49a43.tar.gz
vdr-plugin-sudoku-af0346136a10e4cabebfc5ccd2e7899a0ad49a43.tar.bz2
Added unit tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 658a0ab..f380edb 100644
--- a/Makefile
+++ b/Makefile
@@ -111,6 +111,10 @@ libvdr-$(PLUGIN).so: $(OBJS)
$(CXX) $(CXXFLAGS) -shared $^ -o $@
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
+.PHONY: tests
+tests:
+ @cd $@ && $(MAKE)
+
dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@@ -126,3 +130,4 @@ clean:
@-rm -f $(DEPFILE) *.o *.so $(I18Npot) *.tgz core* *~
@-rm -rf srcdoc
@cd tools && $(MAKE) clean
+ @cd tests && $(MAKE) clean