X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=8586e194154156afb951be559efc7231d67de238;hb=d155353d46f6f4186241e603770d0f5c6a7b6870;hp=b6e12936daa64095475585aff7274abfa766f16c;hpb=51b00f3c1674ff5995e11d9da108ce3da96e1bb2;p=mimedecode.git diff --git a/Makefile b/Makefile index b6e1293..8586e19 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,27 @@ .PHONY: all -all: docs distr +all: docs test clean distr + .PHONY: docs 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