crockery/Makefile

12 lines
283 B
Makefile

SOURCES := $(shell find $(SOURCEDIR) -iname *.go)
crockery: $(SOURCES)
# FIXME: with CGO enabled, setcap creates a binary that segfaults???
CGO_ENABLED=0 go build ur.gs/crockery/cmd/crockery
sudo setcap 'cap_net_bind_service=+ep' ./crockery
clean:
rm -f crockery
.PHONY: init