acl/golang/Makefile
2017-05-21 23:49:26 +08:00

18 lines
160 B
Makefile

GOPATH := $(CURDIR)
all: echo web test
echo:
@go build echo
web:
@go build web
test:
@go build test
cl clean:
@rm -f echo web test
rb rebuild: cl all