Fix issue#130 for autotools.

This commit is contained in:
Franck HOUSSEN
2018-06-24 09:12:41 +02:00
committed by Sylvestre Ledru
parent e74e01dfc6
commit 7a123870b2
2 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
[ Franck Houssen ]
* CMake install: move headers into a dedicated directory (local/include/arpack).
* Install: move headers into a dedicated directory (local/include/arpack).
arpack-ng - 3.6.2
+7 -5
View File
@@ -1,17 +1,19 @@
ACLOCAL_AMFLAGS = -I m4
arpack_includedir = $(includedir)/arpack
AM_DISTCHECK_CONFIGURE_FLAGS =
if MPI
AM_DISTCHECK_CONFIGURE_FLAGS += --enable-mpi
endif
include_HEADERS = debug-arpack.h stat.h
arpack_include_HEADERS = debug-arpack.h stat.h
if ICB
AM_DISTCHECK_CONFIGURE_FLAGS += --enable-icb
include_HEADERS += debug_c.h debug_c.hpp
include_HEADERS += stat_c.h stat_c.hpp
include_HEADERS += arpack.h arpack.hpp
arpack_include_HEADERS += debug_c.h debug_c.hpp
arpack_include_HEADERS += stat_c.h stat_c.hpp
arpack_include_HEADERS += arpack.h arpack.hpp
if MPI
include_HEADERS += parpack.h parpack.hpp
arpack_include_HEADERS += parpack.h parpack.hpp
endif
endif