it's an unfinished mess, but it builds

This commit is contained in:
Laurens Kils-Hütten
2024-04-07 09:08:07 +02:00
parent c53902f1ff
commit 64177e69c2
3 changed files with 28 additions and 6 deletions

View File

@@ -1,6 +1,18 @@
SRC=macros cover forward crown abenteuer class report minigame ausblick
all: Grenzland3.pdf
all: Grenzland3.pdf Cover.pdf
Grenzland3.pdf: ${SRC} Makefile
img: Makefile
make -C img all
Grenzland3.pdf: ${SRC} img Makefile
groff -ms -mde -e -t -p -Tpdf -Kutf8 -dpaper=a5 -P -pA5 ${SRC} > $@
Cover.pdf: Cover.svg Makefile
inkscape -C -o $@ $<
.PHONY: img clean
clean:
rm -fv *.pdf
make -C img clean