~ubuntu-branches/debian/squeeze/alsa-plugins/squeeze

« back to all changes in this revision

Viewing changes to cvscompile

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Elimar Riesebieter, Jordi Mallach
  • Date: 2006-10-16 14:49:06 UTC
  • mfrom: (1.2.1 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061016144906-cd2eybdilqj6olz6
[ Elimar Riesebieter ]
* Added XS-X-Vcs-Svn field in control.

[ Jordi Mallach ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
touch ltconfig
4
 
libtoolize --force --copy --automake
5
 
aclocal $ACLOCAL_FLAGS
6
 
autoheader
7
 
automake --foreign --copy --add-missing
8
 
touch depcomp           # seems to be missing for old automake
9
 
autoconf
10
 
export CFLAGS='-O2 -Wall -W -pipe -g'
11
 
echo "CFLAGS=$CFLAGS"
12
 
echo "./configure $@"
13
 
./configure $@ || exit 1
14
 
unset CFLAGS
15
 
if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
16
 
  make
17
 
fi