mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-09 06:18:07 +00:00
17 lines
255 B
Bash
17 lines
255 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Simple script to create the Makefile and build
|
||
|
|
||
|
# export PATH="$PATH:/usr/local/cuda/bin/"
|
||
|
|
||
|
make distclean || echo clean
|
||
|
|
||
|
rm -f Makefile.in
|
||
|
rm -f config.status
|
||
|
./autogen.sh || echo done
|
||
|
|
||
|
# CFLAGS="-O2" ./configure
|
||
|
./configure.sh
|
||
|
|
||
|
make -j 4
|