From 8638343251c530c09a2b06849d04c9c0d4e401c6 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Tue, 5 May 2026 10:27:20 -0400 Subject: [PATCH] re-add ctag update to default Makefile target --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 71eedd7..00b4344 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,9 @@ TEST_OBJECTS := $(patsubst $(TEST_DIR)/%.cpp, $(BUILD_DIR)/%.o, $(TEST_SOURCES)) LIBRARY = $(BUILD_DIR)/liborbit.a +# Default target (updates ctags if available) all: lib test-build + @command -v ctags >/dev/null 2>&1 && ctags -R tests/ src/ || true $(BUILD_DIR): mkdir -p $(BUILD_DIR)