summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-12 20:06:35 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-12 20:06:35 -0400
commitbe76daaa8b4e6f6d5f60c79ecd84a8d034cbe351 (patch)
tree9be2cfecc270a3ed5b58d4579db810d7ec5ec22f /Makefile
parent96fbc6ec48e0613b0d377fc06376a5a767db4b9c (diff)
downloadgetwtxt-be76daaa8b4e6f6d5f60c79ecd84a8d034cbe351.tar.gz
updated makefile install section
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
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\!
a> 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232