mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
11 lines
206 B
Text
11 lines
206 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
REPO="$(realpath "$(dirname "$(realpath "$0")")/..")"
|
||
|
if [ -f "$REPO/Makefile" ]; then make -C "$REPO" distclean; fi
|
||
|
|
||
|
PREFIX="$REPO/dest/dev-native"
|
||
|
|
||
|
"$REPO/configure" --prefix="$PREFIX"
|