File: autogen.sh

package info (click to toggle)
lightdm 1.32.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,012 kB
  • sloc: ansic: 24,716; sh: 5,008; makefile: 1,159; cpp: 1,143; python: 267; xml: 39
file content (21 lines) | stat: -rwxr-xr-x 438 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

libtoolize --force --copy
intltoolize --force --copy
gtkdocize --copy
aclocal
autoconf
autoheader
automake --add-missing --copy --foreign

YELP=`which yelp-build`
if test -z $YELP; then
  echo "*** The tools to build the documentation are not found,"
  echo "    please install the yelp-tools package ***"
  exit 1
fi

if [ -z "$NOCONFIGURE" ]; then
    ./configure $@
fi