acl/golang/Makefile

18 lines
157 B
Makefile
Raw Normal View History

2017-05-20 13:26:15 +08:00
GOPATH := $(CURDIR)
2018-02-24 17:46:09 +08:00
all: echo web
2017-05-20 13:26:15 +08:00
echo:
@go build echo
web:
@go build web
2018-02-24 17:46:09 +08:00
#test:
# @go build test
2017-05-20 13:26:15 +08:00
cl clean:
@rm -f echo web test
2017-05-20 13:26:15 +08:00
rb rebuild: cl all