mirror of
https://github.com/fiatjaf/khatru.git
synced 2025-03-27 10:12:54 +01:00
6 lines
180 B
Makefile
6 lines
180 B
Makefile
relay-lite: $(shell find . -name "*.go")
|
|
go build -ldflags="-s -w" -tags lite -o ./relay-lite
|
|
|
|
relay-full: $(shell find . -name "*.go")
|
|
go build -ldflags="-s -w" -o ./relay-full
|