summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5c7f7e9c58d3f49a3731583ec66ef6e9510600fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: build

build:
	nikola build

clean:
	nikola clean

mrproper: clean
	$(RM) .doit.db

.PHONY: all build clean mrproper