smartbridge/Makefile

15 lines
313 B
Makefile
Raw Permalink Normal View History

2023-05-30 19:48:06 +00:00
default: all
all: smartbridge
2023-05-31 17:36:57 +00:00
requirements:
go mod download
2023-05-30 19:48:06 +00:00
smartbridge: cmd/smartbridge/*.go
go build -o $@ $^
2023-05-31 17:36:57 +00:00
smartbridge-static: cmd/smartbridge/*.go
CGO_ENABLED=0 go build -ldflags="-w -s" -o smartbridge $^
.PHONY: container
container: cmd/smartbridge/*.go
podman build . -t feldspaten.org/smartbridge