Index: Makefile.am
===================================================================
--- Makefile.am	(revision e4633b41be5d693587f549d3cbbfb9ecbe56bdb1)
+++ Makefile.am	(revision e3d4fd1b2ec7a7b883bb1d6504e81d04f98b5fcb)
@@ -11,6 +11,6 @@
 ## Created On       : Sun May 31 22:14:18 2015
 ## Last Modified By : Peter A. Buhr
-## Last Modified On : Fri May 12 18:30:01 2023
-## Update Count     : 42
+## Last Modified On : Wed May 17 11:02:34 2023
+## Update Count     : 56
 ###############################################################################
 
@@ -40,4 +40,7 @@
 installed ?= no
 ARCH = ${if ${arch},"arch=${arch}"}
+arch_support = "x86/x64/arm"
+
+# target "all" created by automake
 
 check :
@@ -51,15 +54,4 @@
 installtest : installcheck # synonym
 
-help :
-	@echo "user targets:"
-	@echo "    Compile compiler/runtime and run test suite."
-	@echo "    $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
-	@echo ""
-	@echo "    Compile compiler/runtime, run test suite, and install."
-	@echo "    $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=x86/x64/arm]"
-
-configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
-	@true
-
 status : @LIBCFA_TARGET_MAKEFILES@
 	@echo -ne "translator\n\t"
@@ -67,4 +59,21 @@
 	@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"
 
+help :
+	@echo "user targets:"
+	@echo "    Compile compiler/runtime."
+	@echo "    $$ make (null) / all"
+	@echo ""
+	@echo "    Compile compiler/runtime and run test suite."
+	@echo "    $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
+	@echo ""
+	@echo "    Compile compiler/runtime, install, and run test suite on installed system."
+	@echo "    $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=${arch_support}]"
+	@echo ""
+	@echo "    Print configuration parameters and system build information."
+	@echo "    $$ make status"
+
+configure-libcfa : @LIBCFA_TARGET_MAKEFILES@
+	@true
+
 @LIBCFA_TARGET_DIRS@ ::
 	${MAKE} -C ${@} ${MAKECMDGOALS}
Index: tests/Makefile.am
===================================================================
--- tests/Makefile.am	(revision e4633b41be5d693587f549d3cbbfb9ecbe56bdb1)
+++ tests/Makefile.am	(revision e3d4fd1b2ec7a7b883bb1d6504e81d04f98b5fcb)
@@ -11,6 +11,6 @@
 ## Created On       : Sun May 31 09:08:15 2015
 ## Last Modified By : Peter A. Buhr
-## Last Modified On : Fri May 12 18:03:57 2023
-## Update Count     : 176
+## Last Modified On : Tue May 16 09:27:48 2023
+## Update Count     : 178
 ###############################################################################
 
@@ -24,11 +24,11 @@
 debug ?= yes
 installed ?= no
-ARCH=${if ${arch},"--arch=${arch}"}
+ARCH = ${if ${arch},"--arch=${arch}"}
+arch_support = "x86/x64/arm"
+DEBUG_FLAGS = -debug -g -O0
+
+quick_test = avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
+
 archiveerrors=
-
-DEBUG_FLAGS=-debug -g -O0
-
-quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable
-
 concurrent=
 timeouts=
@@ -65,5 +65,5 @@
 CFACCLINK = ${CFACCLOCAL} -quiet ${if ${test}, 2> ${test}, } ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}}
 
-PRETTY_PATH=mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
+PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
 
 .PHONY : list .validate .test_makeflags
@@ -128,11 +128,11 @@
 	@echo "user targets:"
 	@echo "    Run the complete test suite."
-	@echo "    $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
+	@echo "    $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
 	@echo ""
 	@echo "    Run the short (quick) test suite."
-	@echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
+	@echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
 	@echo ""
 	@echo "    Run the concurrent test suite."
-	@echo "    $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"
+	@echo "    $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
 	@echo ""
 	@echo "    List all tests in the test suite."
