blob: 1ac4b33f1cd6a2adda402938f24d7980dc3ef984 (
plain)
1
2
3
4
5
6
7
8
|
rm *.o *.so *.lib test
gcc -fPIC -c mul.c
gcc -shared -o libadd.so mul.o
gcc -L$(pwd) -Wl,-rpath=$(pwd) -o test main.c -ladd -g
cp mul.h ../thirdparty/linux/include/
cp libmul.so ../thirdparty/linux/lib/x64/
|