blasphem/Makefile

20 lines
339 B
Makefile
Raw Permalink Normal View History

2022-09-25 22:17:07 -04:00
FE=pkg/frontend/frontend
2022-09-25 11:42:36 -04:00
all: build
build:
go build -o blas ./cmd/blas/
2022-11-11 18:02:52 -05:00
serve:
go run ./cmd/blas/ serve ${BLAS_ARGS}
2022-09-25 22:17:07 -04:00
# pkg/frontend/frontend/hass_frontend:
frontend:
${FE}/script/setup
${FE}/script/build_frontend
2022-11-11 18:02:52 -05:00
todo:
rg -g '!Makefile' -g '!pkg/frontend/frontend/**' -A3 -C3 'XXX:|TODO:' .
2022-09-25 22:17:07 -04:00
2022-09-25 11:42:36 -04:00
debug:
dlv debug ./cmd/blas/ ${ARGS}