From cf2c4c5dde005f8f7499d45e0df98de859e548df Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 7 Jan 2022 13:58:40 -0800 Subject: [PATCH] make: add ctags target For us vim users :) Signed-off-by: William Casarin --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 5a768d1ed..fe17cd563 100644 --- a/Makefile +++ b/Makefile @@ -547,6 +547,9 @@ ncc: ${TARGET_DIR}/libwally-core-build/src/libwallycore.la TAGS: $(RM) TAGS; find * -name test -type d -prune -o -name '*.[ch]' -print -o -name '*.py' -print | xargs etags --append +tags: + $(RM) tags; find * -name test -type d -prune -o -name '*.[ch]' -print -o -name '*.py' -print | xargs ctags --append + ccan/ccan/cdump/tools/cdump-enumstr: ccan/ccan/cdump/tools/cdump-enumstr.o $(CDUMP_OBJS) $(CCAN_OBJS) ALL_PROGRAMS += ccan/ccan/cdump/tools/cdump-enumstr