X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=blobdiff_plain;f=Makefile;h=5ba230c26837f1f28510a2b851691e7fcdc889d5;hp=d748c00409cd6758f91229caddf1ed8485319ad6;hb=HEAD;hpb=43d58bd2134bf59d3790c064ac8f58416d62a8e5 diff --git a/Makefile b/Makefile index d748c00..4a90c04 100644 --- 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.html mimedecode.man mimedecode.txt -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