New milestone: can launch and display an xterm
[illi] / Makefile
# (c) 2023 Aaron Taylor <ataylor at subgeniuskitty dot com>
# See LICENSE.txt file for copyright and license details.
####################################################################################################
# Configuration
#CC = cc
#CC_FLAGS = -Wall -std=c99
####################################################################################################
# Build
all: illi
illi:
@go build
clean:
@go clean
test: clean
# Note: The test machine is 32-bit, not 64-bit.
@env GOARCH=386 go build
@scp illi kilrah:/tmp/
testkill:
@ssh kilrah "pkill illi"