wisski-cloud-distillery/Makefile
Tom Wiesing ccab2883a6
frontend: Rework asset generation
This commit reworks frontend asset generation to not need manually
written html files, but instead generate them automatically.
2022-11-16 13:07:11 +01:00

13 lines
No EOL
189 B
Makefile

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