From 64177e69c2b68293e07ff51a710f2dead1878ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurens=20Kils-H=C3=BCtten?= Date: Sun, 7 Apr 2024 09:08:07 +0200 Subject: [PATCH] it's an unfinished mess, but it builds --- issue03/Cover.svg | 8 ++++---- issue03/Makefile | 16 ++++++++++++++-- issue03/img/Makefile | 10 ++++++++++ 3 files changed, 28 insertions(+), 6 deletions(-) diff --git a/issue03/Cover.svg b/issue03/Cover.svg index fdbf976..810b9c1 100644 --- a/issue03/Cover.svg +++ b/issue03/Cover.svg @@ -9,7 +9,7 @@ id="svg1" inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xml:space="preserve" - sodipodi:docname="Cover4.svg" + sodipodi:docname="Cover.svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink" @@ -71,14 +71,14 @@ y="24.460047">GrenzlandNummer 3, Januar 2024Nummer 3, April 2024 $@ + +Cover.pdf: Cover.svg Makefile + inkscape -C -o $@ $< + +.PHONY: img clean + +clean: + rm -fv *.pdf + make -C img clean diff --git a/issue03/img/Makefile b/issue03/img/Makefile index 8833214..26e912d 100644 --- a/issue03/img/Makefile +++ b/issue03/img/Makefile @@ -1,5 +1,15 @@ +PDF=caves.pdf dungeon.pdf encounters1.pdf encounters2.pdf npc.pdf pointcrawl.pdf title.pdf treasure.pdf map.pdf + +all: ${PDF} + %.pdf: %.svg convert $< $@ %.pdf: %.dot dot -Tpdf $< > $@ + +%.pdf: %.png + convert $< $@ + +clean: + rm -fv *.pdf