File: autogen.sh

package info (click to toggle)
gtkmm-documentation 4.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,772 kB
  • sloc: cpp: 15,541; javascript: 1,208; makefile: 1,080; python: 401; xml: 106; perl: 67; sh: 8
file content (16 lines) | stat: -rwxr-xr-x 532 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh -e
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.

# gtkmm-documentation depends on the mm-common module. Stop if it's not
# installed.
# Also copy files from mm-common to the build/ directory so that things like
# auto-generating the ChangeLog from the git commit messages on 'make dist' is
# possible.
mm-common-prepare --copy --force "$srcdir"

(
  cd "$srcdir" &&
  autoreconf --force --install --verbose
) || exit
test -n "$NOCONFIGURE" || "$srcdir/configure" --enable-maintainer-mode "$@"