hs-test: fix code style
[vpp.git] / extras / hs-test / Makefile
1 all: build docker
2
3 build:
4         go build ./tools/http_server
5         go build .
6
7 docker:
8         bash ./script/build.sh
9
10 fixstyle:
11         @gofmt -w .
12
13 .PHONY: docker