From 6dd5fc32d2fec60a1579cae61fd6b0cb2ff72033 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 5 Jun 2016 01:02:20 +0300 Subject: [PATCH] Add flake8 and release targets --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.39.2