* Add the --with-pkgconfigdir option * Ignore more autoreconf-generated files * Various portability improvements Use the 2nd argument to AX_BLAS and AX_LAPACK to handle errors. Don't rely on $ax_blas_ok and $ax_lapack_ok having any particular value. AC_ARG_ENABLE([x], ...) will define $enable_x to $enableval. No need to do this ourselves. The default for $enable_mpi is "no", so only compare to "no". * Add gitignore patterns for files generated by test-driver * Add a workaround for those without pkg-config >= 0.27 * Update CHANGES
15 lines
309 B
Makefile
15 lines
309 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
if MPI
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-mpi
|
|
endif
|
|
|
|
SUBDIRS = UTIL SRC . TESTS EXAMPLES PARPACK
|
|
|
|
EXTRA_DIST = README PARPACK_CHANGES CHANGES DOCUMENTS VISUAL_STUDIO \
|
|
detect_arpack_bug.m4 CMakeLists.txt
|
|
|
|
pkgconfig_DATA = arpack@LIBSUFFIX@.pc
|
|
|
|
DISTCLEANFILES = $(pkgconfig_DATA)
|