28 lines
663 B
Makefile
28 lines
663 B
Makefile
BUILD_DIR = /home/ruben/dwn/midgard
|
|
|
|
BLOG ::= $(sort $(wildcard blog/*.md))
|
|
BLOG_HTML ::= $(BLOG:%.md=$(BUILD_DIR)/%.html)
|
|
|
|
PYTHON ::= venv/bin/python
|
|
|
|
.PHONY: all clean public
|
|
|
|
all: $(BUILD_DIR)/index.html $(BUILD_DIR)/syntax.css public $(BLOG_HTML)
|
|
|
|
$(BUILD_DIR)/index.html: templates/index.html $(BLOG) page.py
|
|
@mkdir -p "$(@D)"
|
|
$(PYTHON) page.py --index "$<" "$@"
|
|
|
|
$(BUILD_DIR)/blog/%.html: blog/%.md templates/blog.html page.py
|
|
@mkdir -p "$(@D)"
|
|
$(PYTHON) page.py "$<" "$@"
|
|
|
|
$(BUILD_DIR)/syntax.css: makefile
|
|
@mkdir -p "$(@D)"
|
|
$(PYTHON) -m pygments -S rainbow_dash -f html > "$@"
|
|
|
|
public:
|
|
cp -rt "$(BUILD_DIR)" public/.
|
|
|
|
clean:
|
|
rm -rf "$(BUILD_DIR)"
|