c4eadabf86968829b28e31a8c39a1604717c55ea
[vpp.git] / extras / hs-test / Makefile
1 all: build docker
2
3 install-dep:
4         apt update -y && apt install -y golang docker-ce apache2-utils wrk bridge-utils
5
6 build:
7         go build ./tools/http_server
8
9 docker:
10         bash ./script/build.sh
11
12 fixstyle:
13         @gofmt -w .
14         @go mod tidy
15
16 .PHONY: docker