8 lines
208 B
Bash
Executable file
8 lines
208 B
Bash
Executable file
#!/bin/sh
|
|
if [ ! -n "$CC" ]; then
|
|
CC="gcc"
|
|
fi
|
|
"$CC" -c -Wall -Werror -fpic libpandory.c
|
|
"$CC" -shared -o libpandory.so libpandory.o
|
|
"$CC" -L. -Wall -o libpandory-test main.c -lpandory
|
|
"$STRIP" libpandory.so
|