mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
20e91d0b60
ref #935
32 lines
883 B
Makefile
32 lines
883 B
Makefile
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += cxx
|
|
|
|
SRC_CC += cap_copy.cc
|
|
SRC_CC += ipc/ipc.cc ipc/ipc_marshal_cap.cc
|
|
SRC_CC += pager/pager.cc pager/common.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
|
|
SRC_CC += server/server.cc server/common.cc
|
|
SRC_CC += thread/thread.cc thread/thread_bootstrap_empty.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/base/lock
|
|
INC_DIR += $(BASE_DIR)/src/platform $(REP_DIR)/src/platform
|
|
|
|
vpath cap_copy.cc $(BASE_DIR)/src/platform
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
|