X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=8586e194154156afb951be559efc7231d67de238;hb=de1ef9c0262b670f345870a50a794c2dcd864e69;hp=c4c2827a6fe462a19178755a0473a2c7866dfcd0;hpb=dcf94401c24260463049526daacfbab36d7b4615;p=mimedecode.git diff --git a/Makefile b/Makefile index c4c2827..8586e19 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,22 @@ .PHONY: all -all: distr docs +all: docs test clean distr + + +.PHONY: docs +docs: mimedecode.html mimedecode.man mimedecode.txt + +include Makefile.xsltproc + .PHONY: distr distr: ./mk-distr -.PHONY: docs -docs: mimedecode.man mimedecode.txt mimedecode.html -include Makefile.xsltproc +.PHONY: test +test: + make -C test CLEANFILES = *.py[co] MANIFEST @@ -17,3 +24,4 @@ CLEANFILES = *.py[co] MANIFEST .PHONY: clean clean: rm -f $(CLEANFILES) + make -C test clean