X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=8586e194154156afb951be559efc7231d67de238;hb=7fce6a89a190b6ffa0b0135326be506bf02aec42;hp=d748c00409cd6758f91229caddf1ed8485319ad6;hpb=43d58bd2134bf59d3790c064ac8f58416d62a8e5;p=mimedecode.git diff --git a/Makefile b/Makefile index d748c00..8586e19 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 + + CLEANFILES = *.py[co] MANIFEST .PHONY: clean clean: rm -f $(CLEANFILES) + make -C test clean