Files
groqqer/Makefile
T

13 lines
240 B
Makefile
Raw Normal View History

# 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