mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-10 14:57:53 +00:00
c17d11e377
also remove "missing" file, its old and not compatible with ubuntu 14.04
17 lines
256 B
Bash
Executable File
17 lines
256 B
Bash
Executable File
#!/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
|