give example.typ a better name

This commit is contained in:
2025-10-06 17:59:53 +02:00
parent bf63657df3
commit aeb112f5a1
2 changed files with 8 additions and 8 deletions

View File

@@ -1,17 +1,17 @@
.PHONY: view_example .PHONY: view_example
view_example: example.pdf view_example: documentation.pdf
xdg-open $< xdg-open $<
.PHONY: watch_example .PHONY: watch_example
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 .PHONY: documentation
example: example.pdf documentation: documentation.pdf
TO_PACK := $(shell find template -type f) template/LICENSE TO_PACK := $(shell find template -type f) template/LICENSE
PACK_TARGETS := $(TO_PACK:%=pack/tultemplate2/%) pack/tultemplate2/example.typ \ PACK_TARGETS := $(TO_PACK:%=pack/tultemplate2/%) pack/tultemplate2/documentation.typ \
pack/tultemplate2/citations.bib pack/tultemplate2/documentation.pdf pack/tultemplate2/citations.bib
.PHONY: pack .PHONY: pack
pack: pack/tultemplate2.zip pack: pack/tultemplate2.zip
@@ -19,7 +19,7 @@ pack: pack/tultemplate2.zip
.PHONY: clean .PHONY: clean
clean: clean:
rm -rf pack rm -rf pack
rm -f example.pdf rm -f documentation.pdf
pack/tultemplate2.zip: $(PACK_TARGETS) pack/tultemplate2.zip: $(PACK_TARGETS)
@mkdir -p $(@D) @mkdir -p $(@D)
@@ -47,7 +47,7 @@ pack/tultemplate2/template/%: template/%
TEMPLATE_SRCS := $(shell find template -type f) TEMPLATE_SRCS := $(shell find template -type f)
%.pdf: %.typ $(TEMPLATE_SRCS) documentation.pdf: documentation.typ $(TEMPLATE_SRCS)
typst compile --font-path template/fonts $< typst compile --font-path template/fonts $<
include tests/make.mk include tests/make.mk