From fca9824d8abc30b0566f18c9e0797c67671998e7 Mon Sep 17 00:00:00 2001 From: publicmatt Date: Mon, 18 Dec 2023 18:12:20 -0800 Subject: [PATCH] final makefile. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2e098f5..1ca7af0 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,16 @@ PYTHON=.venv/bin/python -.PHONY: build install +.PHONY: build install commit + +all: build commit install: requirements.txt $(PYTHON) -m pip install -r $^ build: build-svg.py template.svg $(PYTHON) $< + +commit: chat.svg git add '*.svg' && \ GIT_AUTHOR_NAME='publicmatt' GIT_AUTHOR_EMAIL='git@publicmatt.com' \ GIT_COMMITTER_NAME='publicmatt' GIT_COMMITTER_EMAIL='git@publicmatt.com' \