mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
051e84c4b4
This commit introduces the new `Component` interface in the form of the headers base/component.h and base/entrypoint.h. The os/server.h API has become merely a compatibilty wrapper and will eventually be removed. The same holds true for os/signal_rpc_dispatcher.h. The mechanism has moved to base/signal.h and is now called 'Signal_handler'. Since the patch shuffles headers around, please do a 'make clean' in the build directory. Issue #1832
35 lines
926 B
Makefile
35 lines
926 B
Makefile
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += cxx startup
|
|
|
|
SRC_CC += ipc/ipc.cc
|
|
SRC_CC += avl_tree/avl_tree.cc
|
|
SRC_CC += allocator/slab.cc
|
|
SRC_CC += allocator/allocator_avl.cc
|
|
SRC_CC += heap/heap.cc heap/sliced_heap.cc
|
|
SRC_CC += console/console.cc
|
|
SRC_CC += child/child.cc
|
|
SRC_CC += process/process.cc
|
|
SRC_CC += elf/elf_binary.cc
|
|
SRC_CC += lock/lock.cc
|
|
SRC_CC += signal/signal.cc signal/common.cc signal/platform.cc
|
|
SRC_CC += server/server.cc
|
|
SRC_CC += thread/thread.cc thread/stack.cc thread/trace.cc
|
|
SRC_CC += thread/myself.cc
|
|
SRC_CC += thread/stack_allocator.cc env/cap_map.cc
|
|
SRC_CC += sleep.cc
|
|
SRC_CC += rm_session_client.cc
|
|
SRC_CC += entrypoint/entrypoint.cc
|
|
SRC_CC += component/component.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
# vi: set ft=make :
|