]> git.phdru.name Git - mimedecode.git/blobdiff - Makefile
Build(GHActions): Use `checkout@v4` instead of outdated `v2`
[mimedecode.git] / Makefile
index c4c2827a6fe462a19178755a0473a2c7866dfcd0..4a90c042ae0a85dd765dbc1f0f7ba63b55c7791d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,21 @@
 
 .PHONY: all
-all: distr docs
+all: docs test clean distr
+
+
+.PHONY: docs
+docs:
+       make -C docs html man text
+
 
 .PHONY: distr
 distr:
        ./mk-distr
 
-.PHONY: docs
-docs: mimedecode.man mimedecode.txt mimedecode.html
 
-include Makefile.xsltproc
+.PHONY: test
+test:
+       make -C test all
 
 
 CLEANFILES = *.py[co] MANIFEST
@@ -17,3 +23,4 @@ CLEANFILES = *.py[co] MANIFEST
 .PHONY: clean
 clean:
        rm -f $(CLEANFILES)
+       make -C test clean