libpandory/make.sh

8 lines
185 B
Bash
Raw Normal View History

2023-08-19 08:59:28 +02:00
#!/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