forked from Imagelibrary/rtems
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.
24 lines
576 B
Makefile
24 lines
576 B
Makefile
|
|
rtems_tests_PROGRAMS = psxkey06
|
|
psxkey06_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = psxkey06.scn
|
|
dist_rtems_tests_DATA += psxkey06.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 = $(psxkey06_OBJECTS)
|
|
LINK_LIBS = $(psxkey06_LDLIBS)
|
|
|
|
psxkey06$(EXEEXT): $(psxkey06_OBJECTS) $(psxkey06_DEPENDENCIES)
|
|
@rm -f psxkey06$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|