2022-01-17 06:34:38 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
|
2022-01-20 13:54:25 -05:00
|
|
|
export CFLAGS='-fPIC'
|
|
|
|
|
2022-01-17 07:33:28 -05:00
|
|
|
"$REPO/configure" --enable-tests
|