Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r1932e8a r4daf79f  
    1111## Created On       : Sun May 31 22:14:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Sat Feb  2 16:54:42 2019
    14 ## Update Count     : 21
     13## Last Modified On : Mon May  1 16:38:04 2023
     14## Update Count     : 32
    1515###############################################################################
     16
     17# user targets:
     18#  Compile compiler/runtime and run test suite.
     19#  $ make check / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]
     20
     21#  $ make installcheck [debug=yes/no] installed=yes [arch=x86/x64/arm]
    1622
    1723AUTOMAKE_OPTIONS = foreign    # do not require all the GNU file names
     
    3743EXTRA_DIST = LICENSE doc/man/cfa.1 libcfa/configure libcfa/Makefile.dist.am libcfa/Makefile.dist.in tools/build/distcc_hash tools/build/push2dist.sh
    3844
    39 debug=yes
     45debug ?= yes
     46installed ?= no
     47ARCH = $(if $(arch),"arch=$(arch)")
     48
    4049check:
    41         $(MAKE) -C tests all-tests installed=no debug=${debug}
     50        $(MAKE) -C tests tests installed=$(installed) debug=$(debug) $(ARCH)
     51
     52tests: check # synonym
    4253
    4354installcheck:
    44         $(MAKE) -C tests all-tests installed=yes debug=${debug}
     55        $(MAKE) -C tests tests installed=yes debug=$(debug) $(ARCH)
    4556
    4657configure-libcfa: @LIBCFA_TARGET_MAKEFILES@
Note: See TracChangeset for help on using the changeset viewer.