Files
th3ist/Makefile
T
2026-08-25 17:40:17 +03:00

18 lines
249 B
Makefile

# Created by Luxferre in 2026, released into the public domain
.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