14 lines
486 B
Makefile
14 lines
486 B
Makefile
all: editor
|
|
|
|
editor: src/*.odin # grep odin_highlighter
|
|
# odin build src/ -out:bin/editor.o -build-mode:obj -debug -lld
|
|
# dsymutil bin/editor.o -o bin/editor.dSYM
|
|
odin build src/ -out:bin/editor -lld
|
|
|
|
odin_highlighter: plugins/highlighter/src/*.odin
|
|
odin build plugins/highlighter/src/ -build-mode:dll -no-entry-point -out:bin/highlighter
|
|
|
|
grep: plugins/grep/src/*.rs
|
|
nightly-cargo b --manifest-path=plugins/grep/Cargo.toml
|
|
cp plugins/grep/target/debug/libgrep_plugin.dylib bin/
|