10 lines
202 B
Makefile
10 lines
202 B
Makefile
all: target/libdouble_input.so
|
|
node src/main.js
|
|
|
|
target/libdouble_input.so: src/lib.rs Cargo.toml
|
|
cargo build
|
|
(cd target && ln -nsf debug/libdouble_input-* libdouble_input.so)
|
|
|
|
clean:
|
|
rm -rf target
|