wisski-cloud-distillery/Makefile
2022-11-16 13:07:07 +01:00

16 lines
No EOL
333 B
Makefile

.PHONY: clean all deps
all: wdcli frontend
wdcli: internal/component/static/dist
go build -o ./wdcli ./cmd/wdcli
internal/component/static/dist: internal/component/static/src
rm -rf internal/component/static/dist
cd internal/component/static/ && yarn dist
deps:
cd internal/component/static/ && yarn install
clean:
rm wdcli