~ciemon/ubuntu/lucid/predict/553140

1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Script to manually compile PREDICT
#
if [ -a predict.h ]; then
	echo -n "Building PREDICT version `cat .version`... "
	cc -Wall -O3 -s -fomit-frame-pointer predict.c -lm -lncurses -lpthread -o predict
	echo "Done!"
else
	./configure
fi