mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 08:21:08 +00:00
7f2f2d9120
Merge core only libs into the target make-files. Use base-hw specific Board drivers that inherit from generic Board_base. Use Page_flags::access_t instead of additional page_flags_t. Fix #570
16 lines
247 B
Makefile
16 lines
247 B
Makefile
#
|
|
# \brief Synchronisation through locks
|
|
# \author Martin Stein
|
|
# \date 2012-04-16
|
|
#
|
|
|
|
# add C++ sources
|
|
SRC_CC += lock.cc
|
|
|
|
# add include paths
|
|
INC_DIR += $(REP_DIR)/src/base/lock
|
|
|
|
# declare source paths
|
|
vpath lock.cc $(BASE_DIR)/src/base/lock
|
|
|