f9c111eed5694018d761d590be3fdfd27455157c
[vpp.git] / extras / hs-test / Makefile
1 all: build docker
2
3 install-dep:
4         apt update -y && apt install -y apache2-utils wrk
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