aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/Makefile
blob: c4eadabf86968829b28e31a8c39a1604717c55ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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

docker:
	bash ./script/build.sh

fixstyle:
	@gofmt -w .
	@go mod tidy

.PHONY: docker