diff --git a/Makefile b/Makefile index 2d9c2f4..3bcd62f 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,8 @@ lint: clean: rm -f httpserve -.PHONY: build clean lint +install: build + test -d "${HOME}" + install -Dm0755 -t "${HOME}/.local/bin/" httpserve + +.PHONY: build clean lint install