From 6d27bd5df5131bb2f3ab2178a3d982d833d0bcd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Mekina?= Date: Tue, 7 Oct 2025 12:18:34 +0200 Subject: [PATCH] add non-zipped bundling for templategen --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ef2daa3..00b5bca 100644 --- a/Makefile +++ b/Makefile @@ -10,12 +10,16 @@ watch_documentation: documentation: documentation.pdf TO_PACK := $(shell find template -type f) template/LICENSE -PACK_TARGETS := $(TO_PACK:%=pack/tultemplate2/%) pack/tultemplate2/documentation.typ \ - pack/tultemplate2/documentation.pdf pack/tultemplate2/citations.bib +BUNDLE_TARGETS := $(TO_PACK:%=pack/tultemplate2/%) pack/tultemplate2/citations.bib +PACK_TARGETS := $(BUNDLE_TARGETS) pack/tultemplate2/documentation.typ \ + pack/tultemplate2/documentation.pdf .PHONY: pack pack: pack/tultemplate2.zip +.PHONY: bundle +bundle: $(BUNDLE_TARGETS) + .PHONY: clean clean: rm -rf pack