mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
10 lines
193 B
Bash
Executable file
10 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
export CFLAGS='-fPIC'
|
|
|
|
"$REPO/configure" --enable-tests
|