mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 07:10:52 +08:00
* Makefile.am, configure.ac: Add new test for exercising running out of memory while allocating the key pointers. * psxkey02/.cvsignore, psxkey02/Makefile.am, psxkey02/init.c, psxkey02/psxkey02.doc, psxkey02/psxkey02.scn: New files.
30 lines
690 B
Makefile
30 lines
690 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = psxkey02
|
|
psxkey02_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = psxkey02.scn
|
|
dist_rtems_tests_DATA += psxkey02.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
psxkey02_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(psxkey02_OBJECTS) $(psxkey02_LDADD)
|
|
LINK_LIBS = $(psxkey02_LDLIBS)
|
|
|
|
psxkey02$(EXEEXT): $(psxkey02_OBJECTS) $(psxkey02_DEPENDENCIES)
|
|
@rm -f psxkey02$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|