mirror of https://github.com/GOSTSec/ccminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
259 B
16 lines
259 B
11 years ago
|
#!/bin/bash
|
||
|
|
||
10 years ago
|
# Simple script to create the Makefile and build
|
||
11 years ago
|
|
||
10 years ago
|
# export PATH="$PATH:/usr/local/cuda/bin/"
|
||
11 years ago
|
|
||
11 years ago
|
make clean || echo clean
|
||
|
|
||
10 years ago
|
rm -f Makefile.in
|
||
11 years ago
|
rm -f config.status
|
||
|
./autogen.sh || echo done
|
||
|
|
||
10 years ago
|
CFLAGS="-O2" ./configure --with-mpir-src=../mpir-2.6.0
|
||
|
|
||
|
make
|