teldrive/Makefile
2023-09-23 09:58:33 +05:30

16 lines
237 B
Makefile

.PHONY: pre-ui
pre-ui:
cd ui/teldrive-ui && npm ci
.PHONY: ui
ui:
cd ui/teldrive-ui && npm run build
.PHONY: sync-ui
sync-ui:
git submodule update --init --recursive --remote
.PHONY: teldrive
teldrive:
go build -ldflags "-s -w"