ACLOCAL_FLAGS + arguments

This commit is contained in:
Jaroslav Kysela 1999-02-17 09:44:11 +00:00
parent 013a463ae0
commit e54aada1a6

View file

@ -1,9 +1,11 @@
#!/bin/bash #!/bin/bash
aclocal aclocal $ACLOCAL_FLAGS
automake --foreign automake --foreign
autoconf autoconf
export CFLAGS='-O2 -fomit-frame-pointer -Wall -pipe -g' export CFLAGS='-O2 -fomit-frame-pointer -Wall -pipe -g'
./configure echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@
unset CFLAGS unset CFLAGS
make make