Norman Feske 8243329ad4 os: Move Genode::Config into 'config' library
Originally, the convenience utility for accessing a process
configuration came in the form of a header file. But this causes
aliasing problems if multiple compilation units access the config while
the configuration gets dynamically updated. Moving the implementation of
the accessor to the singleton object into a library solves those
problems.
2013-09-23 14:25:58 +02:00

32 lines
804 B
Makefile

#
# OKLinux support library
#
SRC_CC = genode_block.cc \
genode_config.cc \
genode_exit.cc \
genode_framebuffer.cc \
genode_input.cc \
genode_lock.cc \
genode_memory.cc \
genode_net.cc \
genode_threads.cc \
genode_open.cc \
genode_printf.cc \
genode_sleep.cc
SRC_CC += iguana_eas.cc \
iguana_hardware.cc \
iguana_memsection.cc \
iguana_pd.cc \
iguana_thread.cc \
iguana_tls.cc
INC_DIR += $(REP_DIR)/include/oklx_lib
INC_DIR += $(REP_DIR)/src/lib/oklx/include
LIBS = base config
# do not produce position-independent code
CC_OPT_PIC =
vpath %.cc $(REP_DIR)/src/lib/oklx/genode
vpath %.cc $(REP_DIR)/src/lib/oklx/iguana