build: update makefile

This commit is contained in:
Yiyang Kang 2023-03-04 16:52:33 +08:00
parent 10c2530528
commit ce1b711f84
1 changed files with 5 additions and 1 deletions

View File

@ -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