Files
rtems/testsuites/psxtests/psxkey05/Makefile.am
Zhongwei Yao b5c906429f Unlimited objects support for POSIX keys
This patch enables unlimited model in POSIX key manger and have a decent
runtime on POSIX key searching, adding and deleting operations.  Memory
overhead is lower than current implementation when the size of key and key
value becomes big.
2013-08-06 14:11:38 +02:00

24 lines
576 B
Makefile

rtems_tests_PROGRAMS = psxkey05
psxkey05_SOURCES = init.c
dist_rtems_tests_DATA = psxkey05.scn
dist_rtems_tests_DATA += psxkey05.doc
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
AM_CPPFLAGS += -I$(top_srcdir)/include
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
LINK_OBJS = $(psxkey05_OBJECTS)
LINK_LIBS = $(psxkey05_LDLIBS)
psxkey05$(EXEEXT): $(psxkey05_OBJECTS) $(psxkey05_DEPENDENCIES)
@rm -f psxkey05$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am