]> git.phdru.name Git - mimedecode.git/blobdiff - Makefile
Add tests
[mimedecode.git] / Makefile
index b6e12936daa64095475585aff7274abfa766f16c..8586e194154156afb951be559efc7231d67de238 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,27 @@
 
 .PHONY: all
-all: docs distr
+all: docs test clean distr
+
 
 .PHONY: docs
 docs: mimedecode.html mimedecode.man mimedecode.txt
 
 include Makefile.xsltproc
 
+
 .PHONY: distr
 distr:
        ./mk-distr
 
 
+.PHONY: test
+test:
+       make -C test
+
+
 CLEANFILES = *.py[co] MANIFEST
 
 .PHONY: clean
 clean:
        rm -f $(CLEANFILES)
+       make -C test clean