"Fossies" - the Fresh Open Source Software Archive 
Member "scalasca-2.6/vendor/cubew/build-config/m4/ac_cube_tests.m4" (19 Apr 2021, 1346 Bytes) of package /linux/misc/scalasca-2.6.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ##*************************************************************************##
2 ## CUBE http://www.scalasca.org/ ##
3 ##*************************************************************************##
4 ## Copyright (c) 2015-2016 ##
5 ## Forschungszentrum Juelich GmbH, Juelich Supercomputing Centre ##
6 ## ##
7 ## This software may be modified and distributed under the terms of ##
8 ## a BSD-style license. See the COPYING file in the package base ##
9 ## directory for details. ##
10 ##*************************************************************************##
11
12
13 AC_DEFUN([AC_CUBE_TESTS],
14 [
15 AC_ARG_WITH( test, [AS_HELP_STRING([--with-test=path], [ Defined path where is the test file generated for the chaining up the test suits])],[ CUBE_TEST_FILE_LOCATION=$withval],[CUBE_TEST_FILE_LOCATION="."])
16
17
18 AS_IF([ test "x$CUBE_TEST_FILE_LOCATION" == "x." || test "x$CUBE_TEST_FILE_LOCATION" == "xyes"], [
19 CUBE_TEST_FILE_LOCATION="."
20 ])
21
22 AS_IF([ ! test -d $CUBE_CUBELIB ],[
23 CUBE_TEST_FILE_LOCATION="."
24 ])
25 AC_MSG_NOTICE([Use $CUBE_TEST_FILE_LOCATION to generate an initial test .cubex file ])
26
27 AC_SUBST([CUBE_TEST_FILE_LOCATION])
28
29 ])