mirror of
https://github.com/alexkay/spek.git
synced 2025-04-17 17:12:19 +03:00
10 lines
305 B
Bash
Executable File
10 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
test -n "$srcdir" || srcdir=$(dirname "$0")
|
|
test -n "$srcdir" || srcdit=.
|
|
(
|
|
cd "$srcdir" &&
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" --enable-maintainer-mode "$@" |