Merge pull request #86 from jsrzx/master

修正错误的make目标
This commit is contained in:
Aiden X 2020-05-29 09:16:21 +08:00 committed by GitHub
commit 60e3ea3909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ raft:
@mkdir -p build
$(GO) build --buildmode=plugin -o build/raft.so order/etcdraft/*.go
## make raft: build plugin (make plugin type= <solo>)
## make solo: build plugin (make plugin type= <solo>)
solo:
@mkdir -p build
$(GO) build --buildmode=plugin -o build/solo.so order/solo/*.go
## make plugins: build plugins (make plugin type=<raft> and <solo>)
plugins: raft solo
plugins: raft solo