mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-08 14:02:56 +00:00
e2cbc7c5b3
remove repos/base-*/include/irq_session headers and use only a unification from repos/base/include/irq_session first step Issue #1456
26 lines
558 B
Makefile
26 lines
558 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
|
|
SRC_CC += irq/platform.cc
|
|
|
|
# add include paths
|
|
INC_DIR += $(BASE_DIR)/src/base/env
|
|
|
|
# declare source locations
|
|
vpath % $(REP_DIR)/src/base
|
|
vpath % $(BASE_DIR)/src/base
|