diff --git a/http/.gitignore b/http/.gitignore index a48cf0d..1fcb152 100644 --- a/http/.gitignore +++ b/http/.gitignore @@ -1 +1 @@ -public +out diff --git a/http/Makefile b/http/Makefile index 11bcd4c..9e468f7 100644 --- a/http/Makefile +++ b/http/Makefile @@ -1,8 +1,8 @@ -all: clean public +all: clean out -public: $(shell find src -type f) $(shell find share -type f) $(shell find bin) +out: $(shell find src -type f) $(shell find share -type f) $(shell find bin) ./bin/mkws https://joeac.net .PHONY: clean clean: - rm -rf public + rm -rf out diff --git a/http/bin/mkws b/http/bin/mkws index fa4cd99..fd0e726 100755 --- a/http/bin/mkws +++ b/http/bin/mkws @@ -10,7 +10,7 @@ test $# -lt 1 && usage export SRC="$(realpath src)" export SHARE="$(realpath share)" -export OUT="$(realpath public)" +export OUT="$(realpath out)" mkdir -p ${OUT} if ! test -f "${SRC}"/index.upphtml