diff options
author | June McEnroe <june@causal.agency> | 2021-01-20 18:22:07 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-20 18:22:07 -0500 |
commit | 1fdfbf9e96f638e60bf4d34aa30327e35d001a0e (patch) | |
tree | 7215303623b734e6127a743da9b16bef6f7a096b /bin/Makefile | |
parent | Add messy sh lexer (diff) | |
download | src-1fdfbf9e96f638e60bf4d34aa30327e35d001a0e.tar.gz src-1fdfbf9e96f638e60bf4d34aa30327e35d001a0e.zip |
Generate tags for sh files in mtags
Only matches functions declared at the beginnings of lines, but I'm fine with that.
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/Makefile b/bin/Makefile index 7e6b0b7d..7fc0ad0c 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -134,10 +134,10 @@ html: ${HTMLS} ${HTMLS}: html.sh scheme hilex htagml htmltags -htmltags: *.[chly] mtags Makefile +htmltags: *.[chly] mtags Makefile *.sh rm -f $@ for f in *.[chly]; do ctags -aw -f $@ $$f; done - ./mtags -a -f $@ Makefile + ./mtags -a -f $@ Makefile *.sh .SUFFIXES: .html |