mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-24 15:55:41 -05:00
8 lines
176 B
Bash
Executable file
8 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
|
|
|
"$REPO/configure" --enable-tests-all
|