teldrive/Makefile
2023-09-27 15:06:12 +05:30

16 lines
267 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 -trimpath -ldflags "-s -w -extldflags=-static"