]> git.phdru.name Git - mimedecode.git/blobdiff - Makefile
Cleanup: Fix flake8 E128 continuation line under-indented for visual indent
[mimedecode.git] / Makefile
index d748c00409cd6758f91229caddf1ed8485319ad6..5ba230c26837f1f28510a2b851691e7fcdc889d5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,7 @@
 
 .PHONY: all
-all: distr docs
+all: docs test clean distr
 
-.PHONY: distr
-distr:
-       ./mk-distr
 
 .PHONY: docs
 docs: mimedecode.html mimedecode.man mimedecode.txt
@@ -12,8 +9,19 @@ 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