1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-01-01 18:55:59 +00:00
ccminer/build.sh
Tanguy Pruvot ce9b8002cd fix automake and remove useless files, update build.sh
- 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
2014-08-31 00:05:24 +02:00

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