From 366b6d946c72a7ac381ccd31731148c2c25c111f Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Wed, 28 Apr 2021 17:09:47 +0200
Subject: [PATCH] working on: 0.0.32 Release

---
 Makefile | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 65 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index fdebd9ff..b4e62789 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,67 @@
 # https://www.gnu.org/software/make/manual/make.html
 
-all:
-	echo "hello"
+all: main
+	@echo "hello"
+
+clean:
+	@echo "clean"
+
+distclean:
+	@echo "distclean"
+
+pip_compile:
+	pip-compile -r requirements/build.in
+	pip-compile -r requirements/docs.in
+	pip-compile -r requirements/tests.in
+	pip-compile -r requirements/dev.in
+	. scripts/script_get_python_requirements_from_txt.sh
+	pip check
+
+pip_install:
+	pip install -r requirements/build.in
+	pip install -r requirements/docs.in
+	pip install -r requirements/tests.in
+	pip install -r requirements/dev.in
+	pip check
+
+build_setup:
+	python setup.py develop
+	pip install -e .
+	pip check
+
+pip_install_via_setup_py:
+	pip install -e .
+
+build_wheel:
+	python -m pip install --upgrade pip
+	pip install setuptools wheel twine
+	# python setup.py sdist bdist_wheel
+	python -m build --wheel
+	pip check
+
+npm_install:
+	npm install
+
+prepare_edit_setup_py: pip_compile
+
+prepare_first_install:
+	python -m pip install setuptools wheel
+	python -m pip install --upgrade pip
+
+first_install: prepare_first_install pip_install pip_compile build_setup npm_install
+	# build_wheel
+
+main: pip_compile pip_install pip_install_via_setup_py build_wheel npm_install
+	# setup_venv
+
+git_commit_and_push:
+	git add *
+	git commit -m "git_commit_and_push via make"
+	git push
+
+git_push: git_commit_and_push
+
+love:
+	@echo "not war!"
+
+
-- 
GitLab