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

build:
	go build ./tools/http_server
	go build .

docker:
	bash ./script/build.sh

fixstyle:
	@gofmt -w .

.PHONY: docker