13 lines
117 B
Makefile
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
|