Files
rtems/testsuites/samples/minimum/Makefile.am
Joel Sherrill e8fcadbc49 2008-09-17 Miao Yan <yanmiaobest@gmail.com>
* hello/system.h, minimum/Makefile.am, minimum/init.c: Merge GSOC
	project code to add simple device only filesystem (devfs), optionally
	completely drop out filesystem, and to clean up disabling newlib
	reentrancy support. This dropped 17K from the minimum.exe for
	sparc/sis and arm/rtl22xx_t now has a 15K code space.
2008-09-17 15:42:48 +00:00

29 lines
663 B
Makefile

##
## $Id$
##
MANAGERS =
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