mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
13 lines
149 B
Bash
Executable File
13 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -n "$1"; then
|
|
mkdir -p "$1"
|
|
O="$1/"
|
|
fi
|
|
O="${O}configure"
|
|
|
|
aclocal -Im4
|
|
autoconf -o $O
|
|
rm -f aclocal.m4
|
|
rm -rf autom4te.cache/
|