root/current/host/trunk/empath/trunk/autogen.sh

Revision 379, 0.6 kB (checked in by codehelp, 2 years ago)

test program only - not complete yet

  • Property svn:executable set to *
Line 
1#!/bin/sh -x
2
3# Exit this script if any command fails with non-zero exit status.
4set -e
5
6# First cache the command names in variables. If you want to
7# override the names, simply set the variables before calling this
8# script.
9
10: ${GLIB_GETTEXTIZE=glib-gettextize}
11: ${INTLTOOLIZE=intltoolize}
12: ${LIBTOOLIZE=libtoolize}
13: ${ACLOCAL=aclocal}
14: ${AUTOHEADER=autoheader}
15: ${AUTOMAKE=automake}
16: ${AUTOCONF=autoconf}
17
18${GLIB_GETTEXTIZE} --force
19${INTLTOOLIZE} --force
20${LIBTOOLIZE} --force --automake
21${ACLOCAL} ${ACLOCAL_FLAGS}
22${AUTOHEADER}
23${AUTOMAKE} --add-missing
24${AUTOCONF}
25
26echo "Now you can run ./configure --enable-error-on-warning"
Note: See TracBrowser for help on using the browser.