diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-31 10:29:20 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-31 10:29:20 +0800 |
commit | 77d9b1a3211d23ce3f57928006eaab6e719f64af (patch) | |
tree | bbf8213cd9226fa9035cb834d311440fcaa3c497 /Makefile | |
parent | Proper tabs on repo index (diff) | |
download | forge-77d9b1a3211d23ce3f57928006eaab6e719f64af.tar.gz forge-77d9b1a3211d23ce3f57928006eaab6e719f64af.tar.zst forge-77d9b1a3211d23ce3f57928006eaab6e719f64af.zip |
Add colb from June McEnroe
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -15,8 +15,10 @@ man: $(MAN_PAGES:%=man/%.html) $(MAN_PAGES:%=man/%.txt) man/%.html: man/% mandoc -Thtml -O style=./mandoc.css $< > $@ -man/%.txt: man/% - mandoc $< | col -b > $@ +man/%.txt: man/% utils/colb + mandoc $< | ./utils/colb > $@ + +utils/colb: utils/colb.c hookc/hookc: |