mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 01:11:06 +00:00
29 lines
778 B
PHP
29 lines
778 B
PHP
|
#
|
||
|
# \brief Portions of base library shared by core and non-core processes
|
||
|
# \author Norman Feske
|
||
|
# \date 2013-02-14
|
||
|
#
|
||
|
|
||
|
LIBS += cxx syscall startup
|
||
|
|
||
|
SRC_CC += ipc/ipc.cc ipc/pager.cc
|
||
|
SRC_CC += pager/pager.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 += env/spin_lock.cc env/cap_map.cc
|
||
|
SRC_CC += signal/signal.cc
|
||
|
SRC_CC += server/server.cc server/common.cc
|
||
|
SRC_CC += thread/thread.cc thread/thread_bootstrap.cc
|
||
|
|
||
|
INC_DIR += $(REP_DIR)/src/base/lock $(BASE_DIR)/src/base/lock
|
||
|
|
||
|
vpath %.cc $(REP_DIR)/src/base
|
||
|
vpath %.cc $(BASE_DIR)/src/base
|