File: hgcompile

package info (click to toggle)
alsa-lib 1.0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,008 kB
  • ctags: 9,137
  • sloc: ansic: 70,499; sh: 8,914; makefile: 682
file content (19 lines) | stat: -rwxr-xr-x 377 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -e

touch ltconfig
libtoolize --force --copy --automake
aclocal $ACLOCAL_FLAGS
autoheader
automake --foreign --copy --add-missing
touch depcomp		# seems to be missing for old automake
autoconf
export CFLAGS='-O2 -Wall -W -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@ || exit 1
unset CFLAGS
if [ -z "$HGCOMPILE_NO_MAKE" ]; then
  make
fi