Add uninstall operation.
This commit is contained in:
parent
c40e941de2
commit
8560a4b384
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -27,7 +27,10 @@ check: shellcheck
|
|||
clean:
|
||||
$(RM) build-docker shellcheck.log $(START_SCRIPT)
|
||||
|
||||
install: build
|
||||
install: check build
|
||||
install -D --mode=755 $(START_SCRIPT) $(PREFIX)/bin/$(INSTALLATION_NAME)
|
||||
|
||||
uninstall:
|
||||
$(RM) $(PREFIX)/bin/$(INSTALLATION_NAME)
|
||||
|
||||
.PHONY: check clean
|
||||
|
|
Loading…
Reference in a new issue