You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|