aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1f15996..96bc96c 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ export CXXFLAGS = -std=c++11 $(CFLAGS) -fno-exceptions
export LDFLAGS = -pthread -static-libgcc
export LDXXFLAGS = $(LDFLAGS) -static-libstdc++
-.PHONY: all clean pylint $(MAKEFILES) $(CMAKELISTS)
+.PHONY: all clean pylint yapf tags $(MAKEFILES) $(CMAKELISTS)
all: $(OBJDIR)/ccinfo $(MAKEFILES) $(CMAKELISTS)
$(CMAKELISTS):
@@ -50,3 +50,6 @@ pylint:
yapf:
yapf -i $(PYTHONFILES)
+
+tags:
+ ctags -R --exclude="build/*" --exclude="cache/*" --exclude="doc/*" --exclude="results/*"