diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 18:19:21 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 18:19:21 -0500 |
commit | 47747ef69449eddc2125804acf3f67e6090f356f (patch) | |
tree | 5543c9b2cac23a10cc32947bc31cf7375fb24017 /bin/Makefile | |
parent | Add htagml example (diff) | |
download | src-47747ef69449eddc2125804acf3f67e6090f356f.tar.gz src-47747ef69449eddc2125804acf3f67e6090f356f.zip |
List both Makefile and html.sh under README.7
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/Makefile b/bin/Makefile index 5820051c..8e0cb324 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -134,22 +134,22 @@ htmltags: *.[chly] .SUFFIXES: .html .c.html: - sh html.sh $< man1/${<:.c=.1} > $@ + sh html.sh man1/${<:.c=.1} $< > $@ .h.html: - sh html.sh $< man3/${<:.h=.3} > $@ + sh html.sh man3/${<:.h=.3} $< > $@ .y.html: - sh html.sh $< man1/${<:.y=.1} > $@ + sh html.sh man1/${<:.y=.1} $< > $@ .sh.html: - sh html.sh $< man1/${<:.sh=.1} > $@ + sh html.sh man1/${<:.sh=.1} $< > $@ .pl.html: - sh html.sh $< man1/${<:.pl=.1} > $@ + sh html.sh man1/${<:.pl=.1} $< > $@ -index.html: Makefile README.7 - sh html.sh Makefile README.7 > $@ +index.html: README.7 Makefile html.sh + sh html.sh README.7 Makefile html.sh > $@ install-html: ${HTMLS} install -d ${WEBROOT}/bin |