diff options
author | June McEnroe <june@causal.agency> | 2021-01-13 18:17:57 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-13 18:18:35 -0500 |
commit | 720e54b5f787bb417da58c4a0e29b71ecf33b3f4 (patch) | |
tree | 5839ced6a949e148af3bd426e05f6e18f0b8ff8c /bin | |
parent | Match strftime format specifiers (diff) | |
download | src-720e54b5f787bb417da58c4a0e29b71ecf33b3f4.tar.gz src-720e54b5f787bb417da58c4a0e29b71ecf33b3f4.zip |
Remove -t flag from ctags commands
It's the default/only there for compatibility on the implementations I use.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Makefile | 4 |
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 |