File: build

package info (click to toggle)
predict 2.2.3-3.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,716 kB
  • sloc: ansic: 19,433; sh: 3,342; makefile: 428; yacc: 318; perl: 82
file content (10 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (5)
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 -pthread -o predict
	echo "Done!"
else
	./configure
fi