summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-13 18:17:57 -0500
committerJune McEnroe <june@causal.agency>2021-01-13 18:18:35 -0500
commit0958649f3b3d3bbce55615c08ce7561bc1457706 (patch)
tree83a0cb20fdf2240b0b10e91261bcab8c9243abe1
parentMatch strftime format specifiers (diff)
downloadsrc-0958649f3b3d3bbce55615c08ce7561bc1457706.tar.gz
src-0958649f3b3d3bbce55615c08ce7561bc1457706.zip
Remove -t flag from ctags commands
It's the default/only there for compatibility on the implementations I use.
-rw-r--r--bin/Makefile4
1 files 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