X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Makefile;h=ec918a87f76b823421ad74519a22a15888adce0a;hb=18f8a04ae9135d026a4db5548f80b00e40b763e0;hp=989c2a1af1e553307b1f9b4c1c0c946409dd4dc5;hpb=773462284ce84594e06ba1ab1d25396f45bd9a07;p=m_librarian.git diff --git a/Makefile b/Makefile index 989c2a1..ec918a8 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,20 @@ all: @echo "Nothing to be done for 'all'" +.PHONY: release +release: tests flake8 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