From 795f24480456ff62ce536c5be73f89211c872447 Mon Sep 17 00:00:00 2001 From: alexander Date: Thu, 19 Apr 2018 22:42:04 +0200 Subject: [PATCH] Omit test/synthetic from tags file --- Makefile | 2 +- tools/dmake.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f6ff9f2f8..ffea99875 100644 --- a/Makefile +++ b/Makefile @@ -287,7 +287,7 @@ man/cppcheck.1: $(MAN_SOURCE) $(XP) $(DB2MAN) $(MAN_SOURCE) tags: - ctags -R --exclude=doxyoutput --exclude=test/cfg cli externals gui lib test + ctags -R --exclude=doxyoutput --exclude=test/cfg --exclude=test/synthetic cli externals gui lib test install: cppcheck install -d ${BIN} diff --git a/tools/dmake.cpp b/tools/dmake.cpp index 7451a5470..542844ea3 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -389,7 +389,7 @@ int main(int argc, char **argv) fout << "man/cppcheck.1:\t$(MAN_SOURCE)\n\n"; fout << "\t$(XP) $(DB2MAN) $(MAN_SOURCE)\n\n"; fout << "tags:\n"; - fout << "\tctags -R --exclude=doxyoutput --exclude=test/cfg cli externals gui lib test\n\n"; + fout << "\tctags -R --exclude=doxyoutput --exclude=test/cfg --exclude=test/synthetic cli externals gui lib test\n\n"; fout << "install: cppcheck\n"; fout << "\tinstall -d ${BIN}\n"; fout << "\tinstall cppcheck ${BIN}\n";