diff --git a/Makefile b/Makefile index 40af0e1..d576045 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ SVELTE_SRC = $(wildcard $(FRONTEND)/src/*.svelte) \ $(wildcard $(FRONTEND)/src/plots/*.svelte) \ $(wildcard $(FRONTEND)/src/joblist/*.svelte) -.PHONY: clean test $(TARGET) +.PHONY: clean test tags $(TARGET) .NOTPARALLEL: @@ -43,6 +43,10 @@ test: @go vet ./... @go test ./... +tags: + $(info ===> TAGS) + @ctags -R + $(SVELTE_TARGETS): $(SVELTE_SRC) $(info ===> BUILD frontend) cd web/frontend && yarn build