summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-20 18:37:21 +0000
committerJune McEnroe <june@causal.agency>2021-01-20 18:37:21 +0000
commitd10983c138d1ce97f13b61750e0fcfd78a3d9088 (patch)
tree561062960c5e5be9b9f59a486b54c98e4a8ef89e
parentRemove Lua support (diff)
downloadsrc-d10983c138d1ce97f13b61750e0fcfd78a3d9088.tar.gz
src-d10983c138d1ce97f13b61750e0fcfd78a3d9088.zip
Add all target to git.causal.agency Makefile
-rw-r--r--www/git.causal.agency/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/www/git.causal.agency/Makefile b/www/git.causal.agency/Makefile
index 6fdbf129..6bf52f5a 100644
--- a/www/git.causal.agency/Makefile
+++ b/www/git.causal.agency/Makefile
@@ -5,6 +5,8 @@ LIBEXEC = /usr/local/libexec
 BIN = ../../bin
 BINS = about-filter source-filter hilex htagml mtags
 
+all: ${BINS}
+
 install: cgitrc custom.css ${BINS}
 	install -m 644 cgitrc ${ETC}
 	install -m 644 custom.css ${WWW}
d colspan='3' class='logmsg'> Also unary + and fix precedence of unary -. 2020-12-30Support unary + in orderJune McEnroe Missed this because operator(7) just doesn't list it, oddly. 2020-12-30Add postfix $ operator to bitJune McEnroe 2020-12-29Add make lexerJune McEnroe This is kind of a mess and needs to be cleaned up against more careful reading of the make grammar. 2020-12-29Clean up C lexerJune McEnroe This ordering of rules feels much cleaner. 2020-12-29Clean up hilex code somewhatJune McEnroe 2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe 2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe 2020-12-29Match C type declarations as IdentifierTagJune McEnroe 2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe 2020-12-29Reconfigure C macro start conditionsJune McEnroe 2020-12-29Document HTML class namesJune McEnroe 2020-12-29Rename Tag class to IdentifierTagJune McEnroe 2020-12-29Change HTML class from hi to hilexJune McEnroe You can tell I was just copying the HTML code huh. 2020-12-29Add hilex HTML outputJune McEnroe