summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-04-03 12:55:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-04-03 12:55:13 +0000
commit3d5483771c21619e164e5a5cc308802027785dcc (patch)
treee5517f30599b1c7b69c80a159ccae6851146508e /testsuites/libtests
parent2009-04-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3d5483771c21619e164e5a5cc308802027785dcc.tar.bz2
Eliminate _exe_/.exe.
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/cpuuse/Makefile.am14
-rw-r--r--testsuites/libtests/malloctest/Makefile.am14
-rw-r--r--testsuites/libtests/monitor/Makefile.am14
-rw-r--r--testsuites/libtests/monitor02/Makefile.am14
-rw-r--r--testsuites/libtests/putenvtest/Makefile.am14
-rw-r--r--testsuites/libtests/rtems++/Makefile.am16
-rw-r--r--testsuites/libtests/rtmonuse/Makefile.am14
-rw-r--r--testsuites/libtests/stackchk/Makefile.am14
-rw-r--r--testsuites/libtests/termios/Makefile.am14
-rw-r--r--testsuites/libtests/tztest/Makefile.am12
10 files changed, 70 insertions, 70 deletions
diff --git a/testsuites/libtests/cpuuse/Makefile.am b/testsuites/libtests/cpuuse/Makefile.am
index 72906c045a..0b31a92d46 100644
--- a/testsuites/libtests/cpuuse/Makefile.am
+++ b/testsuites/libtests/cpuuse/Makefile.am
@@ -4,8 +4,8 @@
MANAGERS = io rate_monotonic semaphore extension
-rtems_tests_PROGRAMS = cpuuse.exe
-cpuuse_exe_SOURCES = init.c task1.c task2.c task3.c tswitch.c system.h
+rtems_tests_PROGRAMS = cpuuse
+cpuuse_SOURCES = init.c task1.c task2.c task3.c tswitch.c system.h
dist_rtems_tests_DATA = cpuuse.scn
@@ -13,15 +13,15 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-cpuuse_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+cpuuse_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(cpuuse_exe_OBJECTS) $(cpuuse_exe_LDADD)
-LINK_LIBS = $(cpuuse_exe_LDLIBS)
+LINK_OBJS = $(cpuuse_OBJECTS) $(cpuuse_LDADD)
+LINK_LIBS = $(cpuuse_LDLIBS)
-cpuuse.exe$(EXEEXT): $(cpuuse_exe_OBJECTS) $(cpuuse_exe_DEPENDENCIES)
- @rm -f cpuuse.exe$(EXEEXT)
+cpuuse$(EXEEXT): $(cpuuse_OBJECTS) $(cpuuse_DEPENDENCIES)
+ @rm -f cpuuse$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/malloctest/Makefile.am b/testsuites/libtests/malloctest/Makefile.am
index 05e9b9043d..673dac457e 100644
--- a/testsuites/libtests/malloctest/Makefile.am
+++ b/testsuites/libtests/malloctest/Makefile.am
@@ -4,8 +4,8 @@
MANAGERS = io semaphore
-rtems_tests_PROGRAMS = malloctest.exe
-malloctest_exe_SOURCES = init.c task1.c system.h
+rtems_tests_PROGRAMS = malloctest
+malloctest_SOURCES = init.c task1.c system.h
dist_rtems_tests_DATA = malloctest.scn
@@ -13,15 +13,15 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-malloctest_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+malloctest_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(malloctest_exe_OBJECTS) $(malloctest_exe_LDADD)
-LINK_LIBS = $(malloctest_exe_LDLIBS)
+LINK_OBJS = $(malloctest_OBJECTS) $(malloctest_LDADD)
+LINK_LIBS = $(malloctest_LDLIBS)
-malloctest.exe$(EXEEXT): $(malloctest_exe_OBJECTS) $(malloctest_exe_DEPENDENCIES)
- @rm -f malloctest.exe$(EXEEXT)
+malloctest$(EXEEXT): $(malloctest_OBJECTS) $(malloctest_DEPENDENCIES)
+ @rm -f malloctest$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/monitor/Makefile.am b/testsuites/libtests/monitor/Makefile.am
index ff8cd8e222..202c337684 100644
--- a/testsuites/libtests/monitor/Makefile.am
+++ b/testsuites/libtests/monitor/Makefile.am
@@ -5,22 +5,22 @@
MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
ext
-rtems_tests_PROGRAMS = monitor.exe
-monitor_exe_SOURCES = init.c system.h
+rtems_tests_PROGRAMS = monitor
+monitor_SOURCES = init.c system.h
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-monitor_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+monitor_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(monitor_exe_OBJECTS) $(monitor_exe_LDADD)
-LINK_LIBS = $(monitor_exe_LDLIBS)
+LINK_OBJS = $(monitor_OBJECTS) $(monitor_LDADD)
+LINK_LIBS = $(monitor_LDLIBS)
-monitor.exe$(EXEEXT): $(monitor_exe_OBJECTS) $(monitor_exe_DEPENDENCIES)
- @rm -f monitor.exe$(EXEEXT)
+monitor$(EXEEXT): $(monitor_OBJECTS) $(monitor_DEPENDENCIES)
+ @rm -f monitor$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/monitor02/Makefile.am b/testsuites/libtests/monitor02/Makefile.am
index fa89b64520..2792026063 100644
--- a/testsuites/libtests/monitor02/Makefile.am
+++ b/testsuites/libtests/monitor02/Makefile.am
@@ -5,22 +5,22 @@
MANAGERS = dpmem event io msg mp part region sem signal timer rate_monotonic \
ext
-rtems_tests_PROGRAMS = monitor02.exe
-monitor02_exe_SOURCES = init.c system.h
+rtems_tests_PROGRAMS = monitor02
+monitor02_SOURCES = init.c system.h
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-monitor02_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+monitor02_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(monitor02_exe_OBJECTS) $(monitor02_exe_LDADD)
-LINK_LIBS = $(monitor02_exe_LDLIBS)
+LINK_OBJS = $(monitor02_OBJECTS) $(monitor02_LDADD)
+LINK_LIBS = $(monitor02_LDLIBS)
-monitor02.exe$(EXEEXT): $(monitor02_exe_OBJECTS) $(monitor02_exe_DEPENDENCIES)
- @rm -f monitor02.exe$(EXEEXT)
+monitor02$(EXEEXT): $(monitor02_OBJECTS) $(monitor02_DEPENDENCIES)
+ @rm -f monitor02$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/putenvtest/Makefile.am b/testsuites/libtests/putenvtest/Makefile.am
index cf59944c2c..87d0849699 100644
--- a/testsuites/libtests/putenvtest/Makefile.am
+++ b/testsuites/libtests/putenvtest/Makefile.am
@@ -4,22 +4,22 @@
MANAGERS = io semaphore
-rtems_tests_PROGRAMS = putenvtest.exe
-putenvtest_exe_SOURCES = init.c
+rtems_tests_PROGRAMS = putenvtest
+putenvtest_SOURCES = init.c
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-putenvtest_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+putenvtest_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(putenvtest_exe_OBJECTS) $(putenvtest_exe_LDADD)
-LINK_LIBS = $(putenvtest_exe_LDLIBS)
+LINK_OBJS = $(putenvtest_OBJECTS) $(putenvtest_LDADD)
+LINK_LIBS = $(putenvtest_LDLIBS)
-putenvtest.exe$(EXEEXT): $(putenvtest_exe_OBJECTS) $(putenvtest_exe_DEPENDENCIES)
- @rm -f putenvtest.exe$(EXEEXT)
+putenvtest$(EXEEXT): $(putenvtest_OBJECTS) $(putenvtest_DEPENDENCIES)
+ @rm -f putenvtest$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/rtems++/Makefile.am b/testsuites/libtests/rtems++/Makefile.am
index 71b920cb4e..d618ab862d 100644
--- a/testsuites/libtests/rtems++/Makefile.am
+++ b/testsuites/libtests/rtems++/Makefile.am
@@ -5,8 +5,8 @@
MANAGERS = event io msg sem signal timer rate_monotonic
if HAS_CXX
-rtems_tests_PROGRAMS = rtems++.exe
-rtems___exe_SOURCES = Init.cc Task1.cc Task2.cc Task3.cc System.h
+rtems_tests_PROGRAMS = rtems++
+rtems___SOURCES = Init.cc Task1.cc Task2.cc Task3.cc System.h
endif
dist_rtems_tests_DATA = rtems++.scn
@@ -17,16 +17,16 @@ include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
if HAS_CXX
-rtems___exe_LDLIBS = -lrtems++
+rtems___LDLIBS = -lrtems++
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-rtems___exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+rtems___LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
-LINK_OBJS = $(rtems___exe_OBJECTS) $(rtems___exe_LDADD)
-LINK_LIBS = $(rtems___exe_LDLIBS)
+LINK_OBJS = $(rtems___OBJECTS) $(rtems___LDADD)
+LINK_LIBS = $(rtems___LDLIBS)
-rtems++.exe$(EXEEXT): $(rtems___exe_OBJECTS) $(rtems___exe_DEPENDENCIES)
- @rm -f rtems++.exe$(EXEEXT)
+rtems++$(EXEEXT): $(rtems___OBJECTS) $(rtems___DEPENDENCIES)
+ @rm -f rtems++$(EXEEXT)
$(make-cxx-exe)
endif
diff --git a/testsuites/libtests/rtmonuse/Makefile.am b/testsuites/libtests/rtmonuse/Makefile.am
index 633ddea086..14a730fab5 100644
--- a/testsuites/libtests/rtmonuse/Makefile.am
+++ b/testsuites/libtests/rtmonuse/Makefile.am
@@ -4,8 +4,8 @@
MANAGERS = io rate_monotonic semaphore
-rtems_tests_PROGRAMS = rtmonuse.exe
-rtmonuse_exe_SOURCES = init.c getall.c task1.c system.h
+rtems_tests_PROGRAMS = rtmonuse
+rtmonuse_SOURCES = init.c getall.c task1.c system.h
dist_rtems_tests_DATA = rtmonuse.scn
@@ -13,15 +13,15 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-rtmonuse_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+rtmonuse_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(rtmonuse_exe_OBJECTS) $(rtmonuse_exe_LDADD)
-LINK_LIBS = $(rtmonuse_exe_LDLIBS)
+LINK_OBJS = $(rtmonuse_OBJECTS) $(rtmonuse_LDADD)
+LINK_LIBS = $(rtmonuse_LDLIBS)
-rtmonuse.exe$(EXEEXT): $(rtmonuse_exe_OBJECTS) $(rtmonuse_exe_DEPENDENCIES)
- @rm -f rtmonuse.exe$(EXEEXT)
+rtmonuse$(EXEEXT): $(rtmonuse_OBJECTS) $(rtmonuse_DEPENDENCIES)
+ @rm -f rtmonuse$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/stackchk/Makefile.am b/testsuites/libtests/stackchk/Makefile.am
index c827a75abb..ee2b19af47 100644
--- a/testsuites/libtests/stackchk/Makefile.am
+++ b/testsuites/libtests/stackchk/Makefile.am
@@ -4,8 +4,8 @@
MANAGERS = io semaphore
-rtems_tests_PROGRAMS = stackchk.exe
-stackchk_exe_SOURCES = blow.c init.c task1.c system.h
+rtems_tests_PROGRAMS = stackchk
+stackchk_SOURCES = blow.c init.c task1.c system.h
dist_rtems_tests_DATA = stackchk.scn
@@ -13,15 +13,15 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-stackchk_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+stackchk_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(stackchk_exe_OBJECTS) $(stackchk_exe_LDADD)
-LINK_LIBS = $(stackchk_exe_LDLIBS)
+LINK_OBJS = $(stackchk_OBJECTS) $(stackchk_LDADD)
+LINK_LIBS = $(stackchk_LDLIBS)
-stackchk.exe$(EXEEXT): $(stackchk_exe_OBJECTS) $(stackchk_exe_DEPENDENCIES)
- @rm -f stackchk.exe$(EXEEXT)
+stackchk$(EXEEXT): $(stackchk_OBJECTS) $(stackchk_DEPENDENCIES)
+ @rm -f stackchk$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/termios/Makefile.am b/testsuites/libtests/termios/Makefile.am
index 38583ce765..c53fc9347a 100644
--- a/testsuites/libtests/termios/Makefile.am
+++ b/testsuites/libtests/termios/Makefile.am
@@ -4,22 +4,22 @@
MANAGERS = io semaphore
-rtems_tests_PROGRAMS = termios.exe
-termios_exe_SOURCES = init.c
+rtems_tests_PROGRAMS = termios
+termios_SOURCES = init.c
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
-termios_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+termios_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(termios_exe_OBJECTS) $(termios_exe_LDADD)
-LINK_LIBS = $(termios_exe_LDLIBS)
+LINK_OBJS = $(termios_OBJECTS) $(termios_LDADD)
+LINK_LIBS = $(termios_LDLIBS)
-termios.exe$(EXEEXT): $(termios_exe_OBJECTS) $(termios_exe_DEPENDENCIES)
- @rm -f termios.exe$(EXEEXT)
+termios$(EXEEXT): $(termios_OBJECTS) $(termios_DEPENDENCIES)
+ @rm -f termios$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/libtests/tztest/Makefile.am b/testsuites/libtests/tztest/Makefile.am
index ec5356bd8e..f5ce3acba5 100644
--- a/testsuites/libtests/tztest/Makefile.am
+++ b/testsuites/libtests/tztest/Makefile.am
@@ -4,8 +4,8 @@
MANAGERS = all
-rtems_tests_PROGRAMS = tztest.exe
-tztest_exe_SOURCES = init.c
+rtems_tests_PROGRAMS = tztest
+tztest_SOURCES = init.c
dist_rtems_tests_DATA = tztest.scn
@@ -15,11 +15,11 @@ include $(top_srcdir)/../automake/leaf.am
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-LINK_OBJS = $(tztest_exe_OBJECTS) $(tztest_exe_LDADD)
-LINK_LIBS = $(tztest_exe_LDLIBS)
+LINK_OBJS = $(tztest_OBJECTS) $(tztest_LDADD)
+LINK_LIBS = $(tztest_LDLIBS)
-tztest.exe$(EXEEXT): $(tztest_exe_OBJECTS) $(tztest_exe_DEPENDENCIES)
- @rm -f tztest.exe$(EXEEXT)
+tztest$(EXEEXT): $(tztest_OBJECTS) $(tztest_DEPENDENCIES)
+ @rm -f tztest$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am