X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=f6b42d89f488383a0de0080dde07cacd6958be6e;hb=37b2e106641e725c94049838fca28c941152a41e;hp=989c2a1af1e553307b1f9b4c1c0c946409dd4dc5;hpb=773462284ce84594e06ba1ab1d25396f45bd9a07;p=m_librarian.git diff --git a/Makefile b/Makefile index 989c2a1..f6b42d8 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,20 @@ all: @echo "Nothing to be done for 'all'" +.PHONY: release +release: docs distr + .PHONY: distr distr: ./mk-distr +.PHONY: flake8 +flake8: + flake8 + +.PHONY: docs +docs: html + .PHONY: html html: $(MAKE) -C docs html @@ -18,3 +28,7 @@ test: .PHONY: tests tests: test + +.PHONY: clean +clean: + find . -name '*.py[co]' -type f -delete