std-mumu 0.3.0-rc.8

Standard input/output tools for MuMu/Lava
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
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