From 6edcc99f08e56d08c251a789b5ee234cb2a597bc Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 14 Jul 2022 22:29:36 -0700 Subject: [PATCH] Add serve command to makefile for easy testing --- GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index c9bf608..cc6664d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -30,3 +30,6 @@ clean: ## Remove all of the build files @rm -rvf *.elc @rm -rvf public @rm -rvf .org-timestamps + +serve: ## Run a simple web server to look at the results + @cd public && php -S localhost:8000