vorlagen-muendliche-pruefungen

git clone git://source.orangerot.dev/university/vorlagen-muendliche-pruefungen.git
Log | Files | Refs | README

commit 3ed9bc7882c259e177b795c4d22c263e10d8510e
parent 09bc78c920211b6dec899bcd051c7894084d3595
Author: orangerot <orangerot@orangerot.dev>
Date:   Wed, 12 Nov 2025 15:40:39 +0100

fix(Make,dist): include logo in archives

Diffstat:
MMakefile | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,7 +4,6 @@ TEMPLATES = muendliche-pruefung muendliche-nachpruefung muendliche-pruefung-mathematik FILES = README.md main.typ lib.typ $1.typ $1.pdf - PACKAGE_NAME = fsmi-exam-report PACKAGE_VERSION = 0.1.0 PREFIX ?= $(HOME)/.local/share/typst/packages/local @@ -15,10 +14,10 @@ dist: $(addsuffix .tar.gz,${TEMPLATES}) $(addsuffix .zip,${TEMPLATES}) mv $^ $@ define make-archive -$1.tar.gz: $(addprefix $1/,${FILES}) +$1.tar.gz: $(addprefix $1/,${FILES}) $$(wildcard $1/*.svg) tar -vczf $$@ $$^ -$1.zip: $(addprefix $1/,${FILES}) +$1.zip: $(addprefix $1/,${FILES}) $$(wildcard $1/*.svg) zip $$@ $$^ endef