forked from Imagelibrary/rtems
PR 1673/cpukit * sapi/src/chainappendnotify.c, sapi/src/chaingetnotify.c, sapi/src/chaingetwait.c, sapi/src/chainprependnotify.c: New files. * sapi/Makefile.am: Reflect changes above. * sapi/include/rtems/chain.h: Declare rtems_chain_append_with_notification(), rtems_chain_prepend_with_notification(), rtems_chain_get_with_notification(), and rtems_chain_get_with_wait(). * sapi/inline/rtems/chain.inl: Define rtems_chain_append_with_empty_check(), rtems_chain_prepend_with_empty_check(), and rtems_chain_get_with_empty_check().
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/automake/multilib.am
|
|
include $(top_srcdir)/automake/compile.am
|
|
|
|
include_rtemsdir = $(includedir)/rtems
|
|
|
|
include_rtems_HEADERS = include/confdefs.h
|
|
include_rtems_HEADERS += include/rtems/chain.h include/rtems/config.h \
|
|
include/rtems/extension.h include/rtems/fatal.h include/rtems/init.h \
|
|
include/rtems/io.h include/rtems/mptables.h include/rtems/sptables.h
|
|
|
|
EXTRA_DIST = include/rtems/README
|
|
|
|
include_rtems_HEADERS += inline/rtems/chain.inl \
|
|
inline/rtems/extension.inl
|
|
|
|
## src
|
|
AM_CPPFLAGS += -D__RTEMS_INSIDE__
|
|
|
|
noinst_LIBRARIES = libsapi.a
|
|
project_lib_LIBRARIES = libsapi.a
|
|
libsapi_a_SOURCES = src/debug.c src/extension.c src/extensioncreate.c \
|
|
src/extensiondelete.c src/extensionident.c src/fatal.c src/exinit.c \
|
|
src/exshutdown.c src/io.c src/ioclose.c src/iocontrol.c src/iodata.c \
|
|
src/ioinitialize.c src/ioopen.c src/ioread.c src/ioregisterdriver.c \
|
|
src/iounregisterdriver.c src/iowrite.c src/posixapi.c \
|
|
src/rtemsapi.c src/extensiondata.c src/getversionstring.c \
|
|
src/chainappendnotify.c src/chaingetnotify.c src/chaingetwait.c \
|
|
src/chainprependnotify.c
|
|
libsapi_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
include $(srcdir)/preinstall.am
|
|
include $(top_srcdir)/automake/local.am
|