https://github.com/linbox-team/fflas-ffpack
Raw File
Tip revision: 899e305578d303acb19e3171cd6217963dc7ebd3 authored by Cyril Bouvier on 03 December 2021, 18:11:32 UTC
Fix bencharmark-storage-transpose for AVX512
Tip revision: 899e305
aclocal-include.m4
dnl aclocal-include.m4
dnl Copyright (c) 2011 FFLAS-FFPACK
dnl written by Brice Boyer (briceboyer) <boyer.brice@gmail.com>
dnl adapted from LinBox configuration
dnl
dnl ========LICENCE========
dnl This file is part of the library FFLAS-FFPACK.
dnl
dnl FFLAS-FFPACK is free software: you can redistribute it and/or modify
dnl it under the terms of the  GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2.1 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
dnl ========LICENCE========
dnl/

dnl This macro adds the name macrodir to the set of directories
dnl that `aclocal' searches for macros.

dnl serial 1

dnl AM_ACLOCAL_INCLUDE(macrodir)
AC_DEFUN([AM_ACLOCAL_INCLUDE],
[
	AM_CONDITIONAL(INSIDE_GNOME_COMMON, test x = y)

	test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"

	for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done
])

back to top