mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-19 11:15:53 +08:00
12 lines
178 B
Makefile
12 lines
178 B
Makefile
|
assets:
|
||
|
cd ./ui && yarn build
|
||
|
|
||
|
# TODO: Update this once go1.16 is released.
|
||
|
go_bin:
|
||
|
go1.16beta1 build -o asynqmon .
|
||
|
|
||
|
# Target to build a release binary.
|
||
|
build: assets go_bin
|
||
|
|
||
|
|