modularize the Makefile a bit for testing

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2025-04-04 08:16:45 -05:00
parent 3dd2bf61a3
commit ec8bf0c2f3
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View File

@ -1,8 +1,20 @@
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
TMPDIR := ./_tmp
CSRD := ./srd/Cypher-System-Reference-Document-2024-09-26.docx
MD_CSRD := $(TMPDIR)/csrd.md
CCSRD := $(TMPDIR)/ccsrd.md
all: $(MD_CSRD)
cp -a $(MD_CSRD) $(CCSRD)
find patches/base -type f -name *.patch -print0 | xargs -0 -n 1 patch $(CCSRD)
$(MD_CSRD): | $(TMPDIR)
pandoc -f docx -t gfm $(CSRD) -o $(MD_CSRD) --columns 120
$(TMPDIR):
mkdir -p $(TMPDIR)
clean:
rm -rf ./_tmp
rm -rf $(TMPDIR)/ccsrd*
distclean:
rm -rf $(TMPDIR)