diff options
author | June McEnroe <june@causal.agency> | 2020-01-08 01:58:44 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-08 01:58:44 +0000 |
commit | 8e812d8443d3316eb0f85e627f1cd882e67822a4 (patch) | |
tree | 20a14c00778013f649e60f73b6316ae13c3539f8 /www/git.causal.agency/Makefile | |
parent | Add The Book of Flora (diff) | |
download | src-8e812d8443d3316eb0f85e627f1cd882e67822a4.tar.gz src-8e812d8443d3316eb0f85e627f1cd882e67822a4.zip |
Use mandoc -T html for about-filter
This also makes source-filter show mdoc source again and removes the dependency on ttpre entirely. I copied in the inline stylesheet mandoc outputs without -O fragment and added some customizations.
Diffstat (limited to '')
-rw-r--r-- | www/git.causal.agency/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/www/git.causal.agency/Makefile b/www/git.causal.agency/Makefile index 8b87920f..28e08ba5 100644 --- a/www/git.causal.agency/Makefile +++ b/www/git.causal.agency/Makefile @@ -3,20 +3,16 @@ WWW = /usr/local/www/cgit LIBEXEC = /usr/local/libexec BIN = ../../bin -BINS = about-filter source-filter ttpre hi +BINS = about-filter source-filter hi install: cgitrc custom.css ${BINS} install -m 644 cgitrc ${ETC} install -m 644 custom.css ${WWW} install ${BINS} ${LIBEXEC} -ttpre hi: +hi: ${BIN}/hi.c ${MAKE} -C ${BIN} $@ cp ${BIN}/$@ $@ -ttpre: ${BIN}/ttpre.c - -hi: ${BIN}/hi.c - clean: rm -f ${BINS} |