diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-12 20:06:35 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-12 20:06:35 -0400 |
commit | be76daaa8b4e6f6d5f60c79ecd84a8d034cbe351 (patch) | |
tree | 9be2cfecc270a3ed5b58d4579db810d7ec5ec22f /Makefile | |
parent | 96fbc6ec48e0613b0d377fc06376a5a767db4b9c (diff) | |
download | getwtxt-be76daaa8b4e6f6d5f60c79ecd84a8d034cbe351.tar.gz |
updated makefile install section
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile index bda68ca..2f9a73e 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ getwtxt: getwtxt.go go.mod go.sum go build $(GOFLAGS) \ -o $@ @echo - @echo ...Done! + @echo ...Done\! .PHONY: clean clean: @@ -19,7 +19,7 @@ clean: @echo Cleaning build and module caches... go clean -cache -modcache @echo - @echo ...Done! + @echo ...Done\! .PHONY: update update: @@ -27,6 +27,8 @@ update: @echo Updating from upstream repository... @echo git pull --rebase + @echo + @echo ...Done\! .PHONY: install install: @@ -53,7 +55,8 @@ install: @echo Setting ownership... chown -R getwtxt:getwtxt $(BINDIR) @echo - @echo ...Done! + @echo ...Done\! Don\'t forget to run + @echo ' $$ systemctl enable getwtxt' .PHONY: uninstall uninstall: @@ -75,4 +78,4 @@ uninstall: @echo Removing user - userdel getwtxt @echo - @echo ...Done! + @echo ...Done\! |