mirror of
https://github.com/ouqiang/gocron.git
synced 2024-04-21 12:31:58 +00:00
22 lines
231 B
Makefile
22 lines
231 B
Makefile
|
|
default: build
|
|
|
|
.PHONY: build
|
|
build: gocron node
|
|
|
|
.PHONY: gocron
|
|
gocron:
|
|
|
|
go build -o bin/gocron ./cmd/gocron
|
|
|
|
|
|
.PHONY: node
|
|
node:
|
|
|
|
go build -o bin/gocron-node ./cmd/node
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
rm bin/gocron
|
|
rm bin/gocron-node
|