From c3b0a16c3e46186e97c08cdede85124611e25cd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Mekina?= Date: Mon, 6 Oct 2025 17:59:53 +0200 Subject: [PATCH] give example.typ a better name --- Makefile | 10 +++++----- example.typ => documentation.typ | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename example.typ => documentation.typ (100%) diff --git a/Makefile b/Makefile index ca6ab05..268784e 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ .PHONY: view_example -view_example: example.pdf +view_example: documentation.pdf xdg-open $< .PHONY: watch_example watch_example: - typst watch --font-path template/fonts example.typ & xdg-open example.pdf + typst watch --font-path template/fonts example.typ & xdg-open documentation.pdf -.PHONY: example -example: example.pdf +.PHONY: documentation +documentation: documentation.pdf TO_PACK := $(shell find template -type f) template/LICENSE PACK_TARGETS := $(TO_PACK:%=pack/tultemplate2/%) pack/tultemplate2/example.typ \ @@ -19,7 +19,7 @@ pack: pack/tultemplate2.zip .PHONY: clean clean: rm -rf pack - rm -f example.pdf + rm -f documentation.pdf pack/tultemplate2.zip: $(PACK_TARGETS) @mkdir -p $(@D) diff --git a/example.typ b/documentation.typ similarity index 100% rename from example.typ rename to documentation.typ