Initial version

This commit is contained in:
Jaroslav Kysela 2000-10-29 21:51:51 +00:00
commit 8785f9288e
12 changed files with 2694 additions and 0 deletions

22
envy24control/cvscompile Normal file
View file

@ -0,0 +1,22 @@
#!/bin/bash
share=/usr/share/automake/missing
aclocal $ACLOCAL_FLAGS
automake --foreign
if [ ! -r install-sh ]; then
cp $share/install-sh .
fi
if [ ! -r mkinstalldirs ]; then
cp $share/mkinstalldirs .
fi
if [ ! -r missing ]; then
cp $share/missing .
fi
autoconf
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@
unset CFLAGS
make