hs-test: fix install/build on new ubuntu instance
[vpp.git] / extras / hs-test / Makefile
old mode 100755 (executable)
new mode 100644 (file)
index 9026555..c4eadab
@@ -1,10 +1,16 @@
 all: build docker
 
+install-dep:
+       apt update -y && apt install -y golang docker-ce apache2-utils wrk bridge-utils
+
 build:
        go build ./tools/http_server
-       go build .
 
 docker:
        bash ./script/build.sh
 
+fixstyle:
+       @gofmt -w .
+       @go mod tidy
+
 .PHONY: docker