Initial commit

This commit is contained in:
dajoho 2023-08-19 08:59:28 +02:00
commit 003db3ca63
5 changed files with 77 additions and 0 deletions

7
make.sh Executable file
View file

@ -0,0 +1,7 @@
#!/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