Bachelor-Thesis/justfile
2025-10-06 08:56:44 +03:00

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