From: Oleg Broytman Date: Sat, 4 Jun 2016 22:02:20 +0000 (+0300) Subject: Add flake8 and release targets X-Git-Tag: 0.0.11~8 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=6dd5fc32d2fec60a1579cae61fd6b0cb2ff72033 Add flake8 and release targets --- diff --git a/Makefile b/Makefile index 6867d64..6ebbec5 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,17 @@ all: @echo "Nothing to be done for 'all'" +.PHONY: release +release: tests flake8 html distr + .PHONY: distr distr: ./mk-distr +.PHONY: flake8 +flake8: + flake8 + .PHONY: html html: $(MAKE) -C docs html