diff options
author | June McEnroe <june@causal.agency> | 2021-01-13 22:50:32 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-13 22:50:32 +0000 |
commit | 10e17478b30838229eeffeac1249e1e166cc95d5 (patch) | |
tree | bbf9b33f1445ebbf4f36ec860d4d5e1f3ae9f3ed /www/git.causal.agency/Makefile | |
parent | Try to return make substitutions as single tokens (diff) | |
download | src-10e17478b30838229eeffeac1249e1e166cc95d5.tar.gz src-10e17478b30838229eeffeac1249e1e166cc95d5.zip |
Switch git.causal.agency to hilex and htagml
Still missing a shell lexer in hilex, but well... it's shell.
Diffstat (limited to '')
-rw-r--r-- | www/git.causal.agency/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/git.causal.agency/Makefile b/www/git.causal.agency/Makefile index 28e08ba5..0509975f 100644 --- a/www/git.causal.agency/Makefile +++ b/www/git.causal.agency/Makefile @@ -3,16 +3,16 @@ WWW = /usr/local/www/cgit LIBEXEC = /usr/local/libexec BIN = ../../bin -BINS = about-filter source-filter hi +BINS = about-filter source-filter hilex htagml install: cgitrc custom.css ${BINS} install -m 644 cgitrc ${ETC} install -m 644 custom.css ${WWW} install ${BINS} ${LIBEXEC} -hi: ${BIN}/hi.c +hilex htagml:: ${MAKE} -C ${BIN} $@ - cp ${BIN}/$@ $@ + ln -f ${BIN}/$@ $@ clean: rm -f ${BINS} |