13 lines
286 B
Makefile
13 lines
286 B
Makefile
export RUSTFLAGS=-C target-feature=-avx2
|
|
|
|
all: editor
|
|
|
|
editor: grep src/**/*.odin
|
|
mkdir -p bin
|
|
odin build src/ -out:bin/editor -debug
|
|
|
|
grep:
|
|
cargo build --manifest-path "src/pkg/grep_lib/Cargo.toml"
|
|
|
|
test: src/**/*.odin
|
|
odin test src/tests/ -all-packages -debug -out:bin/test_runner
|