diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-23 18:19:27 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-23 18:19:27 +0100 |
| commit | a51993236402484e43c99cc2022fbbc713c6f813 (patch) | |
| tree | 7af0dbfba44bda831e64bb41b46a17e5c4cd1878 | |
| parent | f2f1a941da3eb4ae0343456dc6ee807e8923725a (diff) | |
| download | allocbench-a51993236402484e43c99cc2022fbbc713c6f813.tar.gz allocbench-a51993236402484e43c99cc2022fbbc713c6f813.zip | |
add ctags make target and mark yapf as phony
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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/*" |
