summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/Makefile
blob: 2bb6db951cb53e9072b53f72fbd93521c39f25b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: build docker

build:
	go build ./tools/http_server

docker:
	bash ./script/build.sh

fixstyle:
	@gofmt -w .
	@go mod tidy

.PHONY: docker