Brian S. Stephan 3dd2bf61a3
scaffolding for patching the SRD
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2025-04-03 23:52:40 -05:00

9 lines
285 B
Makefile

all:
mkdir -p ./_tmp
pandoc -f docx -t markdown ./srd/Cypher-System-Reference-Document-2024-09-26.docx -o ./_tmp/csrd.md --columns 120
cp -a ./_tmp/csrd.md ./_tmp/ccsrd.md
find patches/base -type f -name *.patch -print0 | xargs -0 -n 1 patch ./_tmp/ccsrd.md
clean:
rm -rf ./_tmp