sourcebot/Makefile

26 lines
366 B
Makefile
Raw Normal View History

2024-09-18 03:34:43 +00:00
CMDS := zoekt ui
ALL: $(CMDS)
ui:
yarn install
zoekt:
mkdir -p bin
go build -C vendor/zoekt -o $(PWD)/bin ./cmd/...
2024-10-17 20:31:18 +00:00
export PATH=$(PWD)/bin:$(PATH)
export CTAGS_COMMANDS=ctags
2024-09-18 03:34:43 +00:00
clean:
2024-10-17 20:31:18 +00:00
rm -rf \
bin \
node_modules \
packages/web/node_modules \
packages/web/.next \
packages/backend/dist \
packages/backend/node_modules \
.sourcebot
2024-09-18 03:34:43 +00:00
.PHONY: bin