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