Skip to content
Snippets Groups Projects
Commit 701e470f authored by Will McCutchen's avatar Will McCutchen
Browse files

Add basic Makefile

parent 3867aa4d
No related branches found
No related tags found
No related merge requests found
...@@ -22,3 +22,5 @@ _testmain.go ...@@ -22,3 +22,5 @@ _testmain.go
*.exe *.exe
*.test *.test
*.prof *.prof
dist/*
Makefile 0 → 100644
build: dist/go-httpbin
dist/go-httpbin: *.go httpbin/*.go
mkdir -p dist
go build -o dist/go-httpbin
test:
go test -v github.com/mccutchen/go-httpbin/httpbin
run: build
./dist/go-httpbin
clean:
rm -r dist
deps:
go get -u github.com/jteeuwen/go-bindata/...
.PHONY: all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment