From da7a1ccb8119b1af20df254679dff7d68882f27e Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Wed, 11 Jan 2012 19:04:39 +1100 Subject: build: Add rules to create ctags/etags Signed-off-by: Amitay Isaacs (This used to be ctdb commit a9e9444a7a78f5ef0e929a8dbd8ca0c68b40acd4) --- ctdb/Makefile.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ctdb/Makefile.in b/ctdb/Makefile.in index 90d7b085cc..9615a494ca 100755 --- a/ctdb/Makefile.in +++ b/ctdb/Makefile.in @@ -357,6 +357,11 @@ test: all valgrindtest: all VALGRIND="valgrind -q --trace-children=yes" tests/run_tests.sh +ctags: + find . -name "*.[ch]" | xargs ctags + +etags: + find . -name "*.[ch]" | xargs etags realdistclean: distclean rm -f configure config.h.in ctdb.pc -- cgit