asynqmon/Makefile

12 lines
182 B
Makefile
Raw Normal View History

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