final makefile.
This commit is contained in:
parent
9af672906c
commit
fca9824d8a
6
Makefile
6
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' \
|
||||
|
|
Loading…
Reference in New Issue