using comma separated strings instead of string arrays...

This commit is contained in:
2021-06-12 13:41:25 +02:00
parent e4f07ffe2f
commit 9d15ec1cae
5 changed files with 54 additions and 21 deletions

View File

@ -1,6 +1,14 @@
DEBUG=target/debug/libmd_util_rs.so
FILE=ctest/test.c
OUTPUT=ctest/test
test:
build:
cargo build
test: build
gcc -o ${OUTPUT} ${FILE} -Isrc -L. -l:${DEBUG}
./ctest/test
clean:
cargo clean
rm ./ctest/test