From: Aaron Taylor Date: Tue, 7 Feb 2023 06:20:12 +0000 (-0800) Subject: Minor changes to Makefile to make building quieter and add personal laptop as test... X-Git-Url: http://git.subgeniuskitty.com/illi/.git/commitdiff_plain/5d774526099a1b227685c1cec0ea20d086cb6860 Minor changes to Makefile to make building quieter and add personal laptop as test target. --- diff --git a/Makefile b/Makefile index 97fe174..336e448 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,13 @@ all: illi illi: - go build + @go build clean: - go clean + @go clean +test: clean all + @scp illi 192.168.1.115:/tmp/ + +testkill: + @ssh 192.168.1.115 "pkill illi"