From 5d774526099a1b227685c1cec0ea20d086cb6860 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Mon, 6 Feb 2023 22:20:12 -0800 Subject: [PATCH] Minor changes to Makefile to make building quieter and add personal laptop as test target. --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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" -- 2.20.1