From 0958649f3b3d3bbce55615c08ce7561bc1457706 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 13 Jan 2021 18:17:57 -0500 Subject: Remove -t flag from ctags commands It's the default/only there for compatibility on the implementations I use. --- bin/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Makefile b/bin/Makefile index 9cdf9848..e7fe8f8b 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -105,7 +105,7 @@ scheme.h: scheme ./scheme -c > scheme.h tags: *.[chly] - ctags -tw *.[chly] + ctags -w *.[chly] IGNORE = *.o *.html ${BINS_ALL} ${LINKS} scheme.h tags htmltags @@ -140,7 +140,7 @@ ${HTMLS}: html.sh scheme hilex htagml htmltags htmltags: *.[chly] rm -f $@ - for f in *.[chly]; do ctags -atw -f $@ $$f; done + for f in *.[chly]; do ctags -aw -f $@ $$f; done .SUFFIXES: .html -- cgit 1.4.1