forked from Imagelibrary/rtems
* Makefile.am, configure.ac: Add new test to handle the case where a region resize frees enough memory to unblock a task. * sp62/.cvsignore, sp62/Makefile.am, sp62/init.c, sp62/sp62.doc, sp62/sp62.scn: New files. * sp61/init.c: Test does not need regions.
29 lines
603 B
Makefile
29 lines
603 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = sp62
|
|
sp62_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = sp62.scn
|
|
dist_rtems_tests_DATA += sp62.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp62_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(sp62_OBJECTS) $(sp62_LDADD)
|
|
LINK_LIBS = $(sp62_LDLIBS)
|
|
|
|
sp62$(EXEEXT): $(sp62_OBJECTS) $(sp62_DEPENDENCIES)
|
|
@rm -f sp62$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|