14 lines
358 B
Bash
Executable file
14 lines
358 B
Bash
Executable file
#!/bin/sh
|
|
|
|
CCACHE=config.cache
|
|
rm -f $CCACHE
|
|
make distclean
|
|
RANLIB=true AR=ar CONFIG_SHELL=/bin/bigsh CC=cc /bin/bigsh ./configure --prefix=/usr
|
|
make clean all install
|
|
|
|
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 install
|
|
fi
|