12 lines
279 B
Makefile
12 lines
279 B
Makefile
linux:
|
|
RUSTFLAGS="-L ." cargo build --features "tap" --release
|
|
|
|
linux-tun:
|
|
RUSTFLAGS="-L ." cargo build --features "tap" --release
|
|
|
|
pb:
|
|
cargo run --bin build_pb
|
|
mv src/pb/_.rs src/pb/message.rs
|
|
|
|
libtun-so:
|
|
cd src/network && gcc -fPIC -shared -o libtuntap.so tuntap.c && cd -
|