raft/Makefile

35 lines
1.2 KiB
Makefile
Raw Normal View History

# Tangling and weaving
2023-11-24 21:19:20 +00:00
raft.scm raft-impl.scm raft.md raft.egg raft.release-info tests/run.scm: raft.org vendor/htmlize.el
emacs --batch \
--load "~/.config/emacs/early-init.el" \
--load "vendor/htmlize.el" \
--eval "(setq enable-local-variables :all)" \
--eval "(setq org-confirm-babel-evaluate nil)" \
--eval "(require 'ob-tangle)" \
--eval "(require 'ob-lob)" \
--eval "(require 'htmlize)" \
--file "${.ALLSRC:[1]}" \
-f org-babel-tangle \
-f org-md-export-to-markdown
# mv "${.ALLSRC:[1]:R}.html" "${.ALLSRC:[1]:R}.html.old"
# echo "<div class='fossil-doc' data-title='`cat "${.ALLSRC:[1]:R}.html.old" | grep 'class="title"' | sed -e 's/^.*">//' | sed -e 's/<\/h1>//'`'>" > "${.ALLSRC:[1]:R}.html"
# cat "${.ALLSRC:[1]:R}.html.old" | sed -e '1,11d' | head -n -2 >> "${.ALLSRC:[1]:R}.html"
# echo "</div>" >> "${.ALLSRC:[1]:R}.html"
# rm "${.ALLSRC:[1]:R}.html.old"
vendor/htmlize.el:
mkdir -p vendor
wget https://raw.githubusercontent.com/hniksic/emacs-htmlize/dd27bc3f26efd728f2b1f01f9e4ac4f61f2ffbf9/htmlize.el -O vendor/htmlize.el
2023-11-24 21:19:20 +00:00
salmonella: raft.scm
rm -rf report
2023-11-24 21:19:20 +00:00
rm -f raft*.so
salmonella --keep-repo --repo-dir=./petri-dish; \
salmonella-html-report ./salmonella.log report
# Extension Rules
.scm.so:
csc5 -R r7rs -X r7rs -sJ ${.IMPSRC}