mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-08-17 03:47:04 +00:00
.github
DEMSystems
benchmarks
cmake
doc
resources
solvers
src
thirdParty
Zoltan
SampleCmakeScripts
SampleConfigurationScripts
cmake
config
ax_f90_module_case.m4
ax_f90_module_flag.m4
compile
config.guess
config.sub
depcomp
generate-makeoptions.pl
install-sh
missing
replace-install-prefix.pl
string-replace.pl
strip_dup_incl_paths.pl
strip_dup_libs.pl
tac_arg_check_mpi.m4
tac_arg_config_mpi.m4
tac_arg_enable_export-makefiles.m4
tac_arg_enable_feature.m4
tac_arg_enable_feature_sub.m4
tac_arg_enable_feature_sub_check.m4
tac_arg_enable_option.m4
tac_arg_with_3pl_sub.m4
tac_arg_with_ar.m4
tac_arg_with_flags.m4
tac_arg_with_incdirs.m4
tac_arg_with_libdirs.m4
tac_arg_with_libs.m4
tac_arg_with_package.m4
tac_arg_with_perl.m4
token-replace.pl
wk_fc_get_vendor.m4
zac_arg_config_mpi.m4
zac_arg_with_id.m4
doc
docs
example
siMPI
src
test
CMakeLists.txt
COPYRIGHT_AND_LICENSE
Disclaimer
Known_Problems
Makefile.am
Makefile.export.zoltan.in
Makefile.in
README
README.developer
README.md
ReleaseNotes.txt
VERSION
bootstrap-local
buildlib
configure
configure.ac
siMPI_README.txt
README.md
tutorials
utilities
.gitignore
CMakeLists.txt
LICENSE
README.md
phasicFlowConfig.H.in
40 lines
963 B
Plaintext
40 lines
963 B
Plaintext
dnl @synopsis TAC_ARG_WITH_AR
|
|
dnl
|
|
dnl Test for --with-ar="ar_program ar_flags".
|
|
dnl Default is "ar cru"
|
|
dnl
|
|
dnl Generates an Automake conditional USE_ALTERNATE_AR that can be tested.
|
|
dnl Generates the user-specified archiver command in @ALTERNATE_AR@.
|
|
dnl
|
|
dnl @author Mike Heroux <mheroux@cs.sandia.gov>
|
|
dnl
|
|
AC_DEFUN([TAC_ARG_WITH_AR],
|
|
[
|
|
AC_ARG_WITH(ar,
|
|
AC_HELP_STRING([--with-ar], [override archiver command (default is "ar cru")]),
|
|
[
|
|
AC_MSG_CHECKING(user-defined archiver)
|
|
AC_MSG_RESULT([${withval}])
|
|
USE_ALTERNATE_AR=yes
|
|
ALTERNATE_AR="${withval}"
|
|
]
|
|
)
|
|
|
|
if test -n "${SPECIAL_AR}" && test "X${USE_ALTERNATE_AR}" != "Xyes";
|
|
then
|
|
USE_ALTERNATE_AR=yes
|
|
ALTERNATE_AR="${SPECIAL_AR}"
|
|
fi
|
|
|
|
AC_MSG_CHECKING(for special archiver command)
|
|
if test "X${USE_ALTERNATE_AR}" = "Xyes"; then
|
|
AC_MSG_RESULT([${ALTERNATE_AR}])
|
|
AM_CONDITIONAL(USE_ALTERNATE_AR, true)
|
|
else
|
|
AC_MSG_RESULT([none])
|
|
AM_CONDITIONAL(USE_ALTERNATE_AR, false)
|
|
fi
|
|
AC_SUBST(ALTERNATE_AR)
|
|
])
|
|
|