Files
rtems/testsuites/samples/minimum/Makefile.am
Joel Sherrill 5fe0640223 2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* minimum/Makefile.am: Link against all managers.
	* minimum/init.c: Use existing confdefs.h macros to turn off more
	this test does not use.
2008-06-05 14:21:38 +00:00

29 lines
666 B
Makefile

##
## $Id$
##
MANAGERS = all
rtems_tests_PROGRAMS = minimum.exe
minimum_exe_SOURCES = init.c
dist_rtems_tests_DATA = minimum.scn
dist_rtems_tests_DATA += minimum.doc
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
minimum_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
# This test should not be executed
LINK_OBJS = $(minimum_exe_OBJECTS) $(minimum_exe_LDADD)
LINK_LIBS = $(minimum_exe_LDLIBS)
minimum.exe$(EXEEXT): $(minimum_exe_OBJECTS) $(minimum_exe_DEPENDENCIES)
@rm -f minimum.exe$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am