mirror of
https://github.com/kristoferssolo/Bachelor-Thesis.git
synced 2025-12-20 11:04:39 +00:00
16 lines
322 B
Makefile
16 lines
322 B
Makefile
# List all available commands
|
|
default:
|
|
@just --list
|
|
|
|
alias c := compile
|
|
# Compile main file
|
|
compile:
|
|
mkdir -p target
|
|
typst compile --font-path=assets/fonts main.typ target/main.pdf
|
|
|
|
alias w := watch
|
|
# Watch main file
|
|
watch:
|
|
mkdir -p target
|
|
typst watch --font-path=assets/fonts main.typ target/main.pdf
|