Skip to content

Commit

Permalink
make: add ctags target
Browse files Browse the repository at this point in the history
For us vim users :)

Signed-off-by: William Casarin <[email protected]>
  • Loading branch information
jb55 authored and rustyrussell committed Jan 25, 2022
1 parent 16dd091 commit cf2c4c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cf2c4c5

Please sign in to comment.