mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 17:18:53 +00:00
bcdc706f42
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.
9 lines
263 B
Makefile
9 lines
263 B
Makefile
SRC_CC = ipc.cc pager.cc ipc_marshal_cap.cc
|
|
LIBS = cap_copy
|
|
|
|
# disable warning about array boundaries, caused by L4 headers
|
|
CC_WARN = -Wall -Wno-array-bounds
|
|
|
|
vpath %.cc $(REP_DIR)/src/base/ipc
|
|
vpath ipc_marshal_cap.cc $(BASE_DIR)/src/base/ipc
|