From 26c560563843c7aa0313c675d9ce82b7b02a9e32 Mon Sep 17 00:00:00 2001 From: Daniel Van Der Maden Date: Wed, 1 Jan 2020 15:36:13 -0800 Subject: [PATCH] [makefile] Add help message --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 65f05ee..9c7378d 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,14 @@ CURRENT_SIGN_SETTING := $(shell git config commit.gpgSign) -.PHONY: clean-pyc clean-build +.PHONY: clean-py clean-build + +help: + @echo "clean-build - remove build artifacts" + @echo "clean-py - remove Python file artifacts" + @echo "install - install the library locally" + @echo "test - run full test suite" + @echo "release - package and upload a release" + @echo "sdist - package" clean: clean-build clean-py