forked from Imagelibrary/rtems
* Makefile.am, configure.ac, sp62/init.c: Add new test to ensure a particular path is taken through the _Heap_Resize_block code. * sp63/.cvsignore, sp63/Makefile.am, sp63/init.c, sp63/sp63.doc, sp63/sp63.scn: New files.
29 lines
603 B
Makefile
29 lines
603 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = sp63
|
|
sp63_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = sp63.scn
|
|
dist_rtems_tests_DATA += sp63.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp63_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(sp63_OBJECTS) $(sp63_LDADD)
|
|
LINK_LIBS = $(sp63_LDLIBS)
|
|
|
|
sp63$(EXEEXT): $(sp63_OBJECTS) $(sp63_DEPENDENCIES)
|
|
@rm -f sp63$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|