X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=blobdiff_plain;f=Makefile;h=4a90c042ae0a85dd765dbc1f0f7ba63b55c7791d;hp=b6e12936daa64095475585aff7274abfa766f16c;hb=HEAD;hpb=b396c6d276faa8130351c32edfdcf9e2d6796392 diff --git a/Makefile b/Makefile index b6e1293..4a90c04 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,26 @@ .PHONY: all -all: docs distr +all: docs test clean distr + .PHONY: docs -docs: mimedecode.html mimedecode.man mimedecode.txt +docs: + make -C docs html man text -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