Files
norouter/Makefile
Akihiro Suda f12e2e2ac5 initial commit
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2020-09-24 21:28:58 +09:00

17 lines
308 B
Makefile

.DEFAULT_GOAL := binaries
binaries: bin/norouter
bin/norouter:
CGO_ENABLED=0 go build -o $@ ./cmd/norouter
LANG=C LC_ALL=C file $@ | grep -qw "statically linked"
clean:
rm -rf bin
integration:
./integration/test-internal-agent.sh
./integration/test-router.sh
.PHONY: bin/norouter clean integration