mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-09 22:38:05 +00:00
14 lines
261 B
Bash
Executable File
14 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Simple script to create the Makefile
|
|
# then type 'make'
|
|
|
|
# export PATH="$PATH:/usr/local/cuda-6.5/bin/"
|
|
|
|
make clean || echo clean
|
|
|
|
rm -f config.status
|
|
./autogen.sh || echo done
|
|
|
|
CC=/usr/local/bin/colorgcc.pl CFLAGS="-O2 -D_REENTRANT" ./configure
|