mirror of
https://github.com/alexkay/spek.git
synced 2025-04-13 15:27:24 +03:00
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
test -n "$srcdir" || srcdir=$(dirname "$0")
|
|
test -n "$srcdir" || srcdir=.
|
|
(
|
|
cd "$srcdir" &&
|
|
touch config.rpath &&
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" |