File: autogen.sh

package info (click to toggle)
desmume 0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,856 kB
  • ctags: 5,894
  • sloc: ansic: 42,861; objc: 4,130; sh: 3,735; makefile: 184
file content (14 lines) | stat: -rwxr-xr-x 374 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# intltoolize is optionnal as it's only required for the gtk-glade UI.

if test ! "x$(which intltoolize)" = "x"; then
  echo "Running intltoolize"
  intltoolize --copy --force --automake
else
  if test ! "x$(which gintltoolize)" = "x"; then
    echo "Running gintltoolize"
    gintltoolize --copy --force --automake
  fi
fi

autoreconf --install --force --verbose