mirror of
https://github.com/alexkay/spek.git
synced 2025-04-12 14:57:15 +03:00
12 lines
263 B
Bash
Executable File
12 lines
263 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 &&
|
|
autoreconf -fiv
|
|
) || exit
|
|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|