Files
2026-07-20 11:02:45 +02:00

13 lines
117 B
Makefile

all: build
build: fmt
odin build src/ -out:TypoML
clean: fmt
rm -f TypoML
format:
odinfmt -w src/
fmt: format