Makefile: ditch in-tree build, just use go install

This commit is contained in:
Cheer Xiao 2014-01-28 20:24:02 +08:00
parent 49792bad18
commit c578f808da

View File

@ -4,7 +4,7 @@ PKG_PATHS := $(addprefix ./,$(PKGS)) # go tools want an explicit ./
PKG_COVERAGES := $(addsuffix .coverage,$(PKGS))
exe:
go build -o $(EXE) ./main
go install github.com/xiaq/das
test:
go test $(PKG_PATHS)