From 116e54ad1670c240773e5a9a0193dd736de8a934 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 30 Nov 1999 14:03:29 +0000 Subject: Uncommitted remains of a previous patch from Ralf Corsepius which converted fiels to automake. --- testsuites/itrontests/itronhello/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itronmbf01/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itronmbox01/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itronsem01/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itrontask01/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itrontask02/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itrontask03/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itrontask04/Makefile.am | 43 +++++++++++++++++++++++++++ testsuites/itrontests/itrontests.am | 23 ++++++++++++++ testsuites/itrontests/itrontime01/Makefile.am | 43 +++++++++++++++++++++++++++ 10 files changed, 410 insertions(+) create mode 100644 testsuites/itrontests/itronhello/Makefile.am create mode 100644 testsuites/itrontests/itronmbf01/Makefile.am create mode 100644 testsuites/itrontests/itronmbox01/Makefile.am create mode 100644 testsuites/itrontests/itronsem01/Makefile.am create mode 100644 testsuites/itrontests/itrontask01/Makefile.am create mode 100644 testsuites/itrontests/itrontask02/Makefile.am create mode 100644 testsuites/itrontests/itrontask03/Makefile.am create mode 100644 testsuites/itrontests/itrontask04/Makefile.am create mode 100644 testsuites/itrontests/itrontests.am create mode 100644 testsuites/itrontests/itrontime01/Makefile.am (limited to 'testsuites/itrontests') diff --git a/testsuites/itrontests/itronhello/Makefile.am b/testsuites/itrontests/itronhello/Makefile.am new file mode 100644 index 0000000000..a7f3bf2a1a --- /dev/null +++ b/testsuites/itrontests/itronhello/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itronhello +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itronmbf01/Makefile.am b/testsuites/itrontests/itronmbf01/Makefile.am new file mode 100644 index 0000000000..cbfee13c78 --- /dev/null +++ b/testsuites/itrontests/itronmbf01/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itronmbf01 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itronmbox01/Makefile.am b/testsuites/itrontests/itronmbox01/Makefile.am new file mode 100644 index 0000000000..b3380919f5 --- /dev/null +++ b/testsuites/itrontests/itronmbox01/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itronmbox01 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itronsem01/Makefile.am b/testsuites/itrontests/itronsem01/Makefile.am new file mode 100644 index 0000000000..280284f17a --- /dev/null +++ b/testsuites/itrontests/itronsem01/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itronsem01 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itrontask01/Makefile.am b/testsuites/itrontests/itrontask01/Makefile.am new file mode 100644 index 0000000000..62a9ca9925 --- /dev/null +++ b/testsuites/itrontests/itrontask01/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itrontask01 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c task1.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itrontask02/Makefile.am b/testsuites/itrontests/itrontask02/Makefile.am new file mode 100644 index 0000000000..3d8dfa5e65 --- /dev/null +++ b/testsuites/itrontests/itrontask02/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itrontask02 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c dormant.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itrontask03/Makefile.am b/testsuites/itrontests/itrontask03/Makefile.am new file mode 100644 index 0000000000..583c5d198b --- /dev/null +++ b/testsuites/itrontests/itrontask03/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itrontask03 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c preempt.c task1.c task2.c task3.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itrontask04/Makefile.am b/testsuites/itrontests/itrontask04/Makefile.am new file mode 100644 index 0000000000..ec615c0d26 --- /dev/null +++ b/testsuites/itrontests/itrontask04/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itrontask04 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c task1.c task2.c task3.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am diff --git a/testsuites/itrontests/itrontests.am b/testsuites/itrontests/itrontests.am new file mode 100644 index 0000000000..25e96d366b --- /dev/null +++ b/testsuites/itrontests/itrontests.am @@ -0,0 +1,23 @@ +project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@ + +$(project_bspdir)/tests: + @$(mkinstalldirs) $@ + +$(project_bspdir)/tests/$(TEST)$(LIB_VARIANT).exe: $(PGM) + $(INSTALL_PROGRAM) $< $@ + +$(project_bspdir)/tests/screens: + @$(mkinstalldirs) $@ + +$(project_bspdir)/tests/screens/itrontests: + @$(mkinstalldirs) $@ + +$(project_bspdir)/tests/screens/itrontests/$(TEST).scn: $(TEST).scn + $(INSTALL_DATA) $< $@ + +TMPINSTALL_FILES += \ +$(project_bspdir)/tests \ +$(project_bspdir)/tests/$(TEST)$(LIB_VARIANT).exe \ +$(project_bspdir)/tests/screens \ +$(project_bspdir)/tests/screens/itrontests \ +$(project_bspdir)/tests/screens/itrontests/$(TEST).scn diff --git a/testsuites/itrontests/itrontime01/Makefile.am b/testsuites/itrontests/itrontime01/Makefile.am new file mode 100644 index 0000000000..ef82afa023 --- /dev/null +++ b/testsuites/itrontests/itrontime01/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +TEST = itrontime01 +PGM = ${ARCH}/$(TEST).exe + +MANAGERS = all + +# C source names, if any, go here -- minus the .c +C_FILES = init.c +C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) + +H_FILES = system.h +noinst_HEADERS =$(H_FILES) + +DOCTYPES = doc scn +DOCS = $(DOCTYPES:%=$(TEST).%) + +SRCS = $(DOCS) $(C_FILES) $(H_FILES) +OBJS = $(C_O_FILES) + +PRINT_SRCS = $(DOCS) + +PGM = ${ARCH}/$(TEST).exe + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(RTEMS_ROOT)/make/leaf.cfg +include $(top_srcdir)/itrontests.am + +# +# (OPTIONAL) Add local stuff here using += +# + +${PGM}: $(OBJS) $(LINK_FILES) + $(make-exe) + +all-local: $(ARCH) $(TMPINSTALL_FILES) + +EXTRA_DIST = $(C_FILES) $(DOCS) + +include $(top_srcdir)/../../../../automake/local.am -- cgit v1.2.3