diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-25 19:31:44 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2022-12-25 19:33:26 +0000 |
commit | e77fbf2e971aca484b8826f9530041fd162b16d9 (patch) | |
tree | 1708af1c85f823f9709d4290e873106ab0d77205 /Makefile | |
parent | 53ef7f76f552b45a46208d6814c5ff39662ad013 (diff) | |
download | blog-e77fbf2e971aca484b8826f9530041fd162b16d9.tar.gz blog-e77fbf2e971aca484b8826f9530041fd162b16d9.tar.bz2 blog-e77fbf2e971aca484b8826f9530041fd162b16d9.zip |
Use style file from Bear blog by Herman Martinus
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad78306 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |