11 lines
173 B
Makefile
11 lines
173 B
Makefile
_:
|
|
@just --list
|
|
|
|
bindgen:
|
|
cbindgen --config cbindgen.toml --crate dotalib --lang c --output dotalib.h
|
|
|
|
build: bindgen
|
|
cargo build
|
|
gcc -Ltarget/debug/ -ldota test.c
|
|
|