summaryrefslogtreecommitdiff
path: root/Makefile
blob: ad78306713d710659dfee992e36653c83a9a974e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
TEMPLATES := $(shell find templates -name '*.html' 2> /dev/null)
SHARE := $(shell find share -name '*' 2> /dev/null)
POSTS := $(shell find posts -name '*' 2> /dev/null)
CODE := $(shell find blog -name '*.py' 2> /dev/null)

.PHONY: clean

remote: $(TEMPLATES) $(SHARE) $(POSTS)
	python3 blog/blog.py

clean:
	rm -rf remote