From: Aaron Taylor Date: Fri, 3 Mar 2023 01:51:12 +0000 (-0800) Subject: Dev laptop display died, replaced with 15-year old iMac. Updating Makefile accordingly. X-Git-Url: http://git.subgeniuskitty.com/illi/.git/commitdiff_plain/bbee7b5f33590e498927818c23b160466d4ee546 Dev laptop display died, replaced with 15-year old iMac. Updating Makefile accordingly. --- diff --git a/Makefile b/Makefile index 336e448..5edeee5 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,10 @@ illi: clean: @go clean -test: clean all - @scp illi 192.168.1.115:/tmp/ +test: clean + # Note: The test machine is 32-bit, not 64-bit. + @env GOARCH=386 go build + @scp illi kilrah:/tmp/ testkill: - @ssh 192.168.1.115 "pkill illi" + @ssh kilrah "pkill illi"