From 8edcba0f88d17c24afae2448e59759cf647437c6 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 12 Oct 2023 22:55:34 -0700 Subject: [PATCH] update flags to ctags --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7a844bb..f243df3 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ build core core.* cmake-build-* +tags ke kge diff --git a/Makefile b/Makefile index 59ee0e5..d779b11 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ clean: rm -f *.o $(TARGET) tags: $(SOURCES) - ctags --declarations -o $@ $(SOURCES) + ctags -o $@ $(SOURCES) ke: $(OBJS) $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $(OBJS)