genode/base-hw/lib/mk/raw_ipc.mk
Norman Feske bcdc706f42 Unify 'ipc.h' and 'ipc_generic.h' across platforms
The distinction between 'ipc.h' and 'ipc_generic.h' is no more. The only
use case for platform-specific extensions of the IPC support was the
marshalling of capabilities. However, this case is accommodated by a
function interface ('_marshal_capability', '_unmarshal_capability'). By
moving the implementation of these functions from the headers into the
respective ipc libraries, we can abandon the platform-specific 'ipc.h'
headers.
2013-02-14 13:23:37 +01:00

14 lines
298 B
Makefile

#
# \brief Inter-process communication without thread implementations
# \author Martin Stein
# \date 2012-04-16
#
# add C++ source files
SRC_CC += ipc.cc ipc_marshal_cap.cc
# declare source paths
vpath ipc.cc $(REP_DIR)/src/base
vpath ipc_marshal_cap.cc $(BASE_DIR)/src/base/ipc