diff options
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 |