diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,10 +3,13 @@ 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 +.PHONY: clean httpserver remote: $(TEMPLATES) $(SHARE) $(POSTS) python3 blog/blog.py +httpserver: remote + python3 -m http.server --directory remote + clean: rm -rf remote |