Files

18 lines
249 B
Makefile
Raw Permalink Normal View History

2026-08-25 17:40:17 +03:00
# Created by Luxferre in 2026, released into the public domain
2026-08-25 17:36:19 +03:00
.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