18 lines
249 B
Makefile
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
|