Files
rust-ffi-examples/php-to-rust/Makefile
2019-05-17 19:14:20 -04:00

15 lines
226 B
Makefile

ifeq ($(shell uname),Darwin)
EXT := dylib
else
EXT := so
endif
all: target/debug/libdouble_input.$(EXT)
php src/ffi.php
target/debug/libdouble_input.$(EXT): src/lib.rs Cargo.toml
cargo build
clean:
rm -rf target