PLUGIN=std
TARGET=libmumu$(PLUGIN).so
FEATURES ?= host

all:
	cargo build --release --features "$(FEATURES)"

install:
	sudo cp target/release/$(TARGET) /usr/local/lib/
	sudo ldconfig

clean:
	cargo clean
