Skip to content

Commit

Permalink
- 修复makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ning1875 committed Mar 23, 2021
1 parent 87478ee commit a7ae6b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.0 / 2021-03-23
- 使用makefile编译
- 移动配置文件位置
- 完善readme


## 2.0 / 2020-06-19

* [CHANGE] http target 不分再region
Expand Down
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ deps:
export GOPROXY=http://goproxy.io
export GO111MODULE=on
build:
${GOBUILD} -v -ldflags ${LDFLAGES} -o ${BINARY_NAME_SERVER} pkg/server/main.go
${GOBUILD} -v -ldflags ${LDFLAGES} -o ${BINARY_NAME_AGENT} pkg/agent/main.go
${GOBUILD} -v -ldflags ${LDFLAGES} -o ${BINARY_NAME_SERVER} pkg/cmd/server/main.go
${GOBUILD} -v -ldflags ${LDFLAGES} -o ${BINARY_NAME_AGENT} pkg/cmd/agent/main.go
test:
${GOTEST} -v ./...
clean:
Expand Down

0 comments on commit a7ae6b9

Please sign in to comment.