Changeset e3d4fd1 for Makefile.am


Ignore:
Timestamp:
May 17, 2023, 11:18:06 AM (12 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, master
Children:
c3e2131
Parents:
e4633b4
Message:

more cleanup of the make-help option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    re4633b4 re3d4fd1  
    1111## Created On       : Sun May 31 22:14:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Fri May 12 18:30:01 2023
    14 ## Update Count     : 42
     13## Last Modified On : Wed May 17 11:02:34 2023
     14## Update Count     : 56
    1515###############################################################################
    1616
     
    4040installed ?= no
    4141ARCH = ${if ${arch},"arch=${arch}"}
     42arch_support = "x86/x64/arm"
     43
     44# target "all" created by automake
    4245
    4346check :
     
    5154installtest : installcheck # synonym
    5255
    53 help :
    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 
    61 configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
    62         @true
    63 
    6456status : @LIBCFA_TARGET_MAKEFILES@
    6557        @echo -ne "translator\n\t"
     
    6759        @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"
    6860
     61help :
     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
     75configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
     76        @true
     77
    6978@LIBCFA_TARGET_DIRS@ ::
    7079        ${MAKE} -C ${@} ${MAKECMDGOALS}
Note: See TracChangeset for help on using the changeset viewer.