Changes in / [c3e2131:8db4708]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    rc3e2131 r8db4708  
    1111## Created On       : Sun May 31 22:14:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Wed May 17 11:02:34 2023
    14 ## Update Count     : 56
     13## Last Modified On : Fri May 12 18:30:01 2023
     14## Update Count     : 42
    1515###############################################################################
    1616
     
    4040installed ?= no
    4141ARCH = ${if ${arch},"arch=${arch}"}
    42 arch_support = "x86/x64/arm"
    43 
    44 # target "all" created by automake
    4542
    4643check :
     
    5451installtest : installcheck # synonym
    5552
     53help :
     54        @echo "user targets:"
     55        @echo "    Compile compiler/runtime and run test suite."
     56        @echo "    $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
     57        @echo ""
     58        @echo "    Compile compiler/runtime, run test suite, and install."
     59        @echo "    $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=x86/x64/arm]"
     60
     61configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
     62        @true
     63
    5664status : @LIBCFA_TARGET_MAKEFILES@
    5765        @echo -ne "translator\n\t"
     
    5967        @find libcfa -name config.status -printf "\n%h\n\t" -exec {} --config \; | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g"
    6068
    61 help :
    62         @echo "user targets:"
    63         @echo "    Compile compiler/runtime."
    64         @echo "    $$ make (null) / all"
    65         @echo ""
    66         @echo "    Compile compiler/runtime and run test suite."
    67         @echo "    $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
    68         @echo ""
    69         @echo "    Compile compiler/runtime, install, and run test suite on installed system."
    70         @echo "    $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=${arch_support}]"
    71         @echo ""
    72         @echo "    Print configuration parameters and system build information."
    73         @echo "    $$ make status"
    74 
    75 configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
    76         @true
    77 
    7869@LIBCFA_TARGET_DIRS@ ::
    7970        ${MAKE} -C ${@} ${MAKECMDGOALS}
  • configure.ac

    rc3e2131 r8db4708  
    4747
    4848#==============================================================================
    49 # HACK to be able to use conditionals inside makefiles
     49# HACK to be able to use conditionnals inside makefiles
    5050DOifskipcompile='ifeq ($(skipcompile),yes)
    5151else'
  • tests/Makefile.am

    rc3e2131 r8db4708  
    1111## Created On       : Sun May 31 09:08:15 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Tue May 16 09:27:48 2023
    14 ## Update Count     : 178
     13## Last Modified On : Fri May 12 18:03:57 2023
     14## Update Count     : 176
    1515###############################################################################
    1616
     
    2424debug ?= yes
    2525installed ?= no
    26 ARCH = ${if ${arch},"--arch=${arch}"}
    27 arch_support = "x86/x64/arm"
    28 DEBUG_FLAGS = -debug -g -O0
    29 
    30 quick_test = avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
    31 
     26ARCH=${if ${arch},"--arch=${arch}"}
    3227archiveerrors=
     28
     29DEBUG_FLAGS=-debug -g -O0
     30
     31quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
     32
    3333concurrent=
    3434timeouts=
     
    6565CFACCLINK = ${CFACCLOCAL} -quiet ${if ${test}, 2> ${test}, } ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}}
    6666
    67 PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
     67PRETTY_PATH=mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
    6868
    6969.PHONY : list .validate .test_makeflags
     
    128128        @echo "user targets:"
    129129        @echo "    Run the complete test suite."
    130         @echo "    $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
     130        @echo "    $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
    131131        @echo ""
    132132        @echo "    Run the short (quick) test suite."
    133         @echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
     133        @echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
    134134        @echo ""
    135135        @echo "    Run the concurrent test suite."
    136         @echo "    $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
     136        @echo "    $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
    137137        @echo ""
    138138        @echo "    List all tests in the test suite."
Note: See TracChangeset for help on using the changeset viewer.