weblug/Makefile

14 lines
221 B
Makefile
Raw Permalink Normal View History

2022-02-08 08:55:38 +00:00
default: all
all: weblug
.PHONY: test
weblug: cmd/weblug/*.go
2022-02-08 14:00:34 +00:00
go build -o weblug $^
static: cmd/weblug/*.go
2022-02-08 14:00:34 +00:00
CGO_ENABLED=0 go build -ldflags="-w -s" -o weblug $^
test: weblug
sudo bash -c "cd test && ./blackbox.sh"