asynqmon/Makefile

12 lines
182 B
Makefile
Raw Normal View History

2021-01-06 07:24:11 +08:00
assets:
cd ./ui && yarn build
# TODO: Update this once go1.16 is released.
go_binary:
2021-01-30 14:37:53 +08:00
go1.16rc1 build -o asynqmon .
2021-01-06 07:24:11 +08:00
# Target to build a release binary.
build: assets go_binary
2021-01-06 07:24:11 +08:00