]> git.phdru.name Git - mimedecode.git/blobdiff - Makefile
Use m_lib.defenc instead of m_lib; install it from PyPI
[mimedecode.git] / Makefile
index b6e12936daa64095475585aff7274abfa766f16c..5ba230c26837f1f28510a2b851691e7fcdc889d5 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 all
+
+
 CLEANFILES = *.py[co] MANIFEST
 
 .PHONY: clean
 clean:
        rm -f $(CLEANFILES)
+       make -C test clean