From db8f598d56951cf43f22a5e325e0d23c8f7559f9 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 26 Apr 2021 14:00:41 +0200 Subject: build: Remove old build system Close #3250. Close #4081. --- testsuites/samples/Makefile.am | 136 ---------------------------------------- testsuites/samples/configure.ac | 56 ----------------- 2 files changed, 192 deletions(-) delete mode 100644 testsuites/samples/Makefile.am delete mode 100644 testsuites/samples/configure.ac (limited to 'testsuites/samples') diff --git a/testsuites/samples/Makefile.am b/testsuites/samples/Makefile.am deleted file mode 100644 index d6abe53eab..0000000000 --- a/testsuites/samples/Makefile.am +++ /dev/null @@ -1,136 +0,0 @@ -# -# Samples -# - -ACLOCAL_AMFLAGS = -I ../aclocal - -include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg -include $(top_srcdir)/../automake/compile.am - -samples = -sample_screens = -sample_docs = - -support_includes = -I$(top_srcdir)/../support/include - -if HAS_MP -if TEST_base_mp -# base_mp is a sample multiprocessing test -samples += base_mp_node1 -sample_screens += base_mp/base_mp-node1.scn -sample_docs += base_mp/base_mp-node1.doc -base_mp_node1_SOURCES = base_mp/init1.c base_mp/apptask.c base_mp/system.h -base_mp_node1_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_base_mp) \ - $(support_includes) -samples += base_mp_node2 -sample_screens += base_mp/base_mp-node2.scn -sample_docs += base_mp/base_mp-node2.doc -base_mp_node2_SOURCES = base_mp/init2.c base_mp/apptask.c base_mp/system.h -base_mp_node2_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_base_mp) \ - $(support_includes) -endif -endif - -if TEST_base_sp -samples += base_sp -sample_screens += base_sp/base_sp.scn -sample_docs += base_sp/base_sp.doc -base_sp_SOURCES = base_sp/init.c base_sp/apptask.c base_sp/system.h -base_sp_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_base_sp) \ - $(support_includes) -endif - -if TEST_capture -samples += capture -sample_screens += capture/capture.scn -sample_docs += capture/capture.doc -capture_SOURCES = capture/init.c capture/test1.c capture/system.h -capture_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_capture) \ - $(support_includes) -endif - -if CXXTESTS -if TEST_cdtest -samples += cdtest -sample_screens += cdtest/cdtest.scn -cdtest_SOURCES = cdtest/init.c cdtest/main.cc cdtest/system.h -cdtest_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_cdtest) \ - $(support_includes) -endif -endif - -if CXXTESTS -if TEST_iostream -samples += cxx_iostream -sample_screens += iostream/iostream.scn -sample_docs += iostream/iostream.doc -cxx_iostream_SOURCES = iostream/init.cc iostream/system.h -cxx_iostream_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_cxx_iostream) -endif -endif - -if TEST_fileio -samples += fileio -sample_docs += fileio/fileio.doc -fileio_SOURCES = fileio/init.c fileio/system.h -fileio_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_fileio) \ - $(support_includes) -endif - -if TEST_hello -samples += hello -sample_screens += hello/hello.scn -sample_docs += hello/hello.doc -hello_SOURCES = hello/init.c -hello_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_hello) \ - $(support_includes) -endif - -if TEST_minimum -samples += minimum -sample_screens += minimum/minimum.scn -sample_docs += minimum/minimum.doc -minimum_SOURCES = minimum/init.c -minimum_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_minimum) -endif - -if TEST_nsecs -samples += nsecs -sample_screens += nsecs/nsecs.scn -sample_docs += nsecs/nsecs.doc -nsecs_SOURCES = nsecs/init.c nsecs/empty.c -nsecs_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_nsecs) \ - $(support_includes) -endif - -if TEST_paranoia -samples += paranoia -sample_screens += paranoia/paranoia.scn -sample_docs += paranoia/paranoia.doc -paranoia_SOURCES = paranoia/init.c paranoia/paranoia.c \ - paranoia/system.h -paranoia_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_paranoia) \ - $(support_includes) -paranoia_LDADD = -lm $(LDADD) -endif - -if TEST_ticker -samples += ticker -sample_screens += ticker/ticker.scn -sample_docs += ticker/ticker.doc -ticker_SOURCES = ticker/init.c ticker/tasks.c ticker/system.h -ticker_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_ticker) \ - $(support_includes) -endif - -if TEST_unlimited -samples += unlimited -sample_screens += unlimited/unlimited.scn -sample_docs += unlimited/unlimited.doc -unlimited_SOURCES = unlimited/init.c unlimited/test1.c \ - unlimited/test2.c unlimited/test3.c unlimited/system.h -unlimited_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_unlimited) \ - $(support_includes) -endif - -noinst_PROGRAMS = $(samples) diff --git a/testsuites/samples/configure.ac b/testsuites/samples/configure.ac deleted file mode 100644 index 9721ea4f26..0000000000 --- a/testsuites/samples/configure.ac +++ /dev/null @@ -1,56 +0,0 @@ -## Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.69]) -AC_INIT([rtems-c-src-tests-samples],[_RTEMS_VERSION],[https://devel.rtems.org/newticket]) -AC_CONFIG_SRCDIR([hello]) -AC_CONFIG_HEADER([config.h]) -RTEMS_TOP([../..],[..]) -RTEMS_SOURCE_TOP -RTEMS_BUILD_TOP - -RTEMS_CANONICAL_TARGET_CPU - -AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2]) -AM_MAINTAINER_MODE - -RTEMS_ENABLE_CXX - -RTEMS_ENV_RTEMSBSP - -RTEMS_PROJECT_ROOT - -RTEMS_PROG_CC_FOR_TARGET - -RTEMS_PROG_CXX_FOR_TARGET -RTEMS_CANONICALIZE_TOOLS - -RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) -RTEMS_CHECK_CPUOPTS([RTEMS_MULTIPROCESSING]) -RTEMS_CHECK_CXX(RTEMS_BSP) -RTEMS_CHECK_CPUOPTS([RTEMS_NETWORKING]) -RTEMS_CHECK_CPUOPTS([RTEMS_SMP]) - -AM_CONDITIONAL([CXXTESTS],[test "$HAS_CPLUSPLUS" = "yes"]) -AM_CONDITIONAL(NETTESTS,test "$rtems_cv_RTEMS_NETWORKING" = "yes") -AM_CONDITIONAL(HAS_MP,test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes") -AM_CONDITIONAL(NO_SMP,test "$rtems_cv_RTEMS_SMP" != "yes") -AM_CONDITIONAL(HAS_SMP,test "$rtems_cv_RTEMS_SMP" = "yes") - -# BSP Test configuration -RTEMS_TEST_CHECK([base_mp]) -RTEMS_TEST_CHECK([base_sp]) -RTEMS_TEST_CHECK([capture]) -RTEMS_TEST_CHECK([cdtest]) -RTEMS_TEST_CHECK([iostream]) -RTEMS_TEST_CHECK([fileio]) -RTEMS_TEST_CHECK([hello]) -RTEMS_TEST_CHECK([loopback]) -RTEMS_TEST_CHECK([minimum]) -RTEMS_TEST_CHECK([nsecs]) -RTEMS_TEST_CHECK([paranoia]) -RTEMS_TEST_CHECK([pppd]) -RTEMS_TEST_CHECK([ticker]) -RTEMS_TEST_CHECK([unlimited]) - -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT -- cgit v1.2.3