8 lines
185 B
Bash
8 lines
185 B
Bash
|
#!/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
|