mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 08:21:08 +00:00
a5cf09fa6e
fix #1197
25 lines
532 B
Makefile
25 lines
532 B
Makefile
#
|
|
# \brief Portions of base library that are exclusive to non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
# add library dependencies
|
|
LIBS += base-common startup
|
|
|
|
# add C++ sources
|
|
SRC_CC += console/log_console.cc
|
|
SRC_CC += cpu/cache.cc
|
|
SRC_CC += env/env.cc
|
|
SRC_CC += env/context_area.cc
|
|
SRC_CC += env/reinitialize.cc
|
|
SRC_CC += thread/thread.cc
|
|
SRC_CC += thread/start.cc
|
|
|
|
# add include paths
|
|
INC_DIR += $(BASE_DIR)/src/base/env
|
|
|
|
# declare source locations
|
|
vpath % $(REP_DIR)/src/base
|
|
vpath % $(BASE_DIR)/src/base
|