13 lines
240 B
Makefile
13 lines
240 B
Makefile
# groqqer build script
|
|
# Created by Luxferre in 2026, released into the public domain with no warranties
|
|
|
|
all: groqqer
|
|
|
|
groqqer:
|
|
go build -trimpath -ldflags="-s -w" -o bin/groqqer groqqer.go
|
|
|
|
clean:
|
|
rm -rf bin/
|
|
|
|
.PHONY: all groqqer clean
|