minix/commands/flex-2.5.4/build

21 lines
418 B
Text
Raw Normal View History

2005-09-19 15:15:15 +02:00
#!/bin/sh
2006-07-18 16:52:53 +02:00
CCACHE=config.cache
rm -f $CCACHE
RANLIB=true AR=ar CONFIG_SHELL=/bin/bigsh CC=cc /bin/bigsh ./configure --prefix=/usr
make clean all
if [ "$1" != build ]
2006-07-18 16:52:53 +02:00
then make install
fi
if [ -f /usr/gnu/bin/gcc ]
then PATH=/usr/gnu/bin:$PATH
rm -f $CCACHE
CC=gcc CONFIG_SHELL=/bin/bigsh AR=gar /bin/bigsh ./configure --prefix=/usr/local/gnu
make clean libfl.a
if [ "$1" != build ]
then make installlib
fi
fi