Skip to content

Commit

Permalink
fix automake and remove useless files, update build.sh
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
tpruvot committed Aug 30, 2014
1 parent ba7b6ba commit ce9b800
Show file tree
Hide file tree
Showing 17 changed files with 21 additions and 13,131 deletions.
1 change: 0 additions & 1 deletion AUTHORS

This file was deleted.

1 change: 0 additions & 1 deletion COPYING

This file was deleted.

1 change: 0 additions & 1 deletion ChangeLog

This file was deleted.

6 changes: 4 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

It is advised to run ./autogen.sh before./configure (autoconf and automake
You can use ./build.sh to configure and build with default options.

It is advised to run ./autogen.sh before ./configure (autoconf and automake
need to be installed on your system for autogen.sh to work)

./configure has an option named --with-cuda that allows you to specify
where your CUDA 5.5 toolkit is installed (usually /usr/local/cuda-5.5,
where your CUDA 6.5 toolkit is installed (usually /usr/local/cuda,
but some distros may have a different default location)

See README.txt
3 changes: 0 additions & 3 deletions LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion NEWS

This file was deleted.

1,457 changes: 0 additions & 1,457 deletions aclocal.m4

This file was deleted.

16 changes: 16 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/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
Loading

0 comments on commit ce9b800

Please sign in to comment.