File: cvscompile

package info (click to toggle)
alsa-utils 0.9.0beta12-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 736 kB
  • ctags: 1,219
  • sloc: ansic: 6,657; sh: 373; makefile: 122
file content (13 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

aclocal $ACLOCAL_FLAGS
automake --foreign --add-missing
autoconf
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@ || exit 1
unset CFLAGS
if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
  make
fi