mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
34 lines
936 B
Makefile
34 lines
936 B
Makefile
#
|
|
# \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 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 += env/spin_lock.cc env/cap_map.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.cc thread/trace.cc
|
|
SRC_CC += thread/context_allocator.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/base/lock
|
|
INC_DIR += $(BASE_DIR)/src/base/lock
|
|
INC_DIR += $(BASE_DIR)/src/base/thread
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
# vi: set ft=make :
|