mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-01 18:55:59 +00:00
ce9b8002cd
- use foreign AM_INIT_AUTOMAKE to skip COPYING file (which is LICENCE.txt) http://www.gnu.org/software/automake/manual/html_node/Public-Macros.html - use subdir-objects option to fix automake on ubuntu 14.04
17 lines
255 B
Bash
Executable File
17 lines
255 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
|