acl/golang/Makefile
2018-02-24 17:46:09 +08:00

18 lines
157 B
Makefile

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