.PHONY: all build clean test run all: build build: go build -trimpath -ldflags="-s -w" -o bin/th3ist th3ist.go test: go test -v ./... run: build ./bin/th3ist clean: rm -rf bin