summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8eb3cb2..f491bc0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,12 @@ 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 httpserver
+.PHONY: clean server
remote: $(TEMPLATES) $(SHARE) $(POSTS)
python3 blog/blog.py
-httpserver: remote
+server: remote
python3 -m http.server --directory remote
clean: