Always use the Python in venv

This commit is contained in:
Midgard 2020-06-02 18:41:09 +02:00
parent cd6e8751dd
commit c59205afa3
Signed by untrusted user who does not match committer: midgard
GPG Key ID: 511C112F1331BBB4
1 changed files with 4 additions and 2 deletions

View File

@ -3,15 +3,17 @@ BUILD_DIR = /home/ruben/dwn/midgard
BLOG ::= $(sort $(wildcard blog/*.md))
BLOG_HTML ::= $(BLOG:%.md=$(BUILD_DIR)/%.html)
PYTHON ::= venv/bin/python
.PHONY: clean public
all: $(BUILD_DIR)/index.html public $(BLOG_HTML)
$(BUILD_DIR)/index.html: index.html $(BLOG) do_index.py $(BUILD_DIR)
./do_index.py "$<" "$@"
$(PYTHON) do_index.py "$<" "$@"
$(BUILD_DIR)/blog/%.html: blog/%.md blog.html do_blog.py $(BUILD_DIR)/blog
./do_blog.py "$<" "$@"
$(PYTHON) do_blog.py "$<" "$@"
$(BUILD_DIR):
mkdir -p "$@"