aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-01-23 18:19:27 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-01-23 18:19:27 +0100
commita51993236402484e43c99cc2022fbbc713c6f813 (patch)
tree7af0dbfba44bda831e64bb41b46a17e5c4cd1878
parentf2f1a941da3eb4ae0343456dc6ee807e8923725a (diff)
downloadallocbench-a51993236402484e43c99cc2022fbbc713c6f813.tar.gz
allocbench-a51993236402484e43c99cc2022fbbc713c6f813.zip
add ctags make target and mark yapf as phony
-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/*"