Eliminate _exe_/.exe.

This commit is contained in:
Ralf Corsepius
2009-04-03 12:55:13 +00:00
parent eae45e2355
commit 3d5483771c
190 changed files with 1331 additions and 1331 deletions

View File

@@ -4,8 +4,8 @@
MANAGERS = io semaphore
rtems_tests_PROGRAMS = hello.exe
hello_exe_SOURCES = init.c system.h
rtems_tests_PROGRAMS = hello
hello_SOURCES = init.c system.h
dist_rtems_tests_DATA = hello.scn
dist_rtems_tests_DATA += hello.doc
@@ -14,13 +14,13 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
hello_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
hello_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
LINK_OBJS = $(hello_exe_OBJECTS) $(hello_exe_LDADD)
LINK_LIBS = $(hello_exe_LDLIBS)
LINK_OBJS = $(hello_OBJECTS) $(hello_LDADD)
LINK_LIBS = $(hello_LDLIBS)
hello.exe$(EXEEXT): $(hello_exe_OBJECTS) $(hello_exe_DEPENDENCIES)
@rm -f hello.exe$(EXEEXT)
hello$(EXEEXT): $(hello_OBJECTS) $(hello_DEPENDENCIES)
@rm -f hello$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am