Browse Source

re-add ctag update to default Makefile target

test-refactor
cinnaboot 2 months ago
parent
commit
8638343251
  1. 2
      Makefile

2
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)

Loading…
Cancel
Save