X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=5ba230c26837f1f28510a2b851691e7fcdc889d5;hb=a4da20932e73c17ade79f9e254105a45a3ad5b1f;hp=b6e12936daa64095475585aff7274abfa766f16c;hpb=b396c6d276faa8130351c32edfdcf9e2d6796392;p=mimedecode.git diff --git a/Makefile b/Makefile index b6e1293..5ba230c 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 all + + CLEANFILES = *.py[co] MANIFEST .PHONY: clean clean: rm -f $(CLEANFILES) + make -C test clean