.PHONY: all build clean test

all: build

build:
	go build -a -trimpath -gcflags=all="-l -B -e" -ldflags "-s -w" -o clyx ../main.go

clean:
	rm -f clyx

test: build
	./clyx ../test.clx
