commit 014658db7a1be4ae9aa5521431a234424316a0ac parent 2a821bfb2506e73103b89d82709acb50170b6160 Author: William Casarin <jb55@jb55.com> Date: Thu, 10 Aug 2023 21:16:13 -0700 make: more comprehensive ctag searching Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -32,7 +32,7 @@ distclean: clean rm -rf deps tags: - ctags *.c *.h + find . -name '*.c' -or -name '*.h' | xargs ctags configurator: configurator.c $(CC) $< -o $@