mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
18 lines
160 B
Makefile
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
|