diff options
author | June McEnroe <june@causal.agency> | 2021-09-07 16:59:32 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-07 16:59:32 -0400 |
commit | 2681464fabe0e1feb4be2062e35e0f9a265f9716 (patch) | |
tree | 46ead8177df4fa310b3b31cdab38a0f5a5350247 | |
parent | Add dehtml (diff) | |
download | src-2681464fabe0e1feb4be2062e35e0f9a265f9716.tar.gz src-2681464fabe0e1feb4be2062e35e0f9a265f9716.zip |
Generate bin html for .l files correctly
-rw-r--r-- | bin/html.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/html.mk b/bin/html.mk index 15e5257a..92baed46 100644 --- a/bin/html.mk +++ b/bin/html.mk @@ -32,6 +32,9 @@ index.html: README.7 Makefile html.mk html.sh .h.html: sh html.sh man3/${<:.h=.3} $< > $@ +.l.html: + sh html.sh man1/${<:.l=.1} $< > $@ + .y.html: sh html.sh man1/${<:.y=.1} $< > $@ |