blob: 07c02d9c5614725af198273cbfd79e101963cd3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clean:
rm ./build/libhello.so
library:
cargo build --release
build: library
cp ../../target/release/liball.so ./build
go build -ldflags="-r build" -o build/all
all: library build
run: all
./build/all
|