diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 75d10af..57a5600 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,7 +2,9 @@ MAKEFLAGS := -j$(shell nproc) export PATH := $(PATH):./bin -export LANG := en_US.UTF-8 +export LANG = en_US.UTF-8 + +PORT = 8080 reqs := $(shell find include m4 -type f) srcs := $(shell find src -type f -name 'index.gsp') @@ -21,4 +23,4 @@ clean: find . -name '*.html' -delete serve: - darkhttpd src --daemon + darkhttpd src --daemon --port $(PORT) |