bufro 0.2.10

2D vector graphics with C and Rust API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
target/release/libbufro.so: include/bufro.h src/*.rs
	cargo build --release

include/bufro.h: src/*.rs cbindgen.toml
	cbindgen --config cbindgen.toml --crate bufro --output include/bufro.h

install:
	cp target/release/libbufro.so /usr/lib/libbufro.so
	cp include/* /usr/include

clean:
	rm -rf target