From 928cea6814fb00f28879e117b6fbc6fa3b79d0ac Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Thu, 2 Mar 2023 14:11:06 +0100 Subject: [PATCH] Add tags target to Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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