genode/repos/base/lib/mk
Sebastian Sumpf 36e01b720e ldso: Refactor dynamic linker
Issue #1349
2015-03-19 08:57:22 +01:00
..
arm base: Genode's dynamic linker 2014-11-12 14:44:15 +01:00
x86_32 base: Genode's dynamic linker 2014-11-12 14:44:15 +01:00
x86_64 base: Genode's dynamic linker 2014-11-12 14:44:15 +01:00
README Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
cxx.mk Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
ldso-startup.mk base: Genode's dynamic linker 2014-11-12 14:44:15 +01:00
ldso.inc ldso: Refactor dynamic linker 2015-03-19 08:57:22 +01:00
platform.mk Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
startup.inc Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
syscall.mk Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
toolchain_stdcxx.mk Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00

README

This directory contains library description files.  Each '<libname>.mk' file
holds the instruction for building the library '<libname>'. These makefiles are
never used directly but they are called from the build system when required.
When called, the build system passes the following variables:

:'BASE_DIR': This is the base directory of the source tree.

Source codes are specified by setting the 'SRC_CC' and 'SRC_C' variables.
The source code locations must be specified via 'vpath'.
A library can include other libraries by setting the 'LIBS'
variable.

Each '<libname>.mk' file must include the 'lib.mk' role file:

! include $(BASE_DIR)/mk/lib.mk

Libraries implementing one and the same library interface may have specific
implementations for different platforms. Such platform-specific '<libname>.mk'
files should be placed into corresponding subdirectories. For example, the
'linux'-specific implementation of the 'server' library resides in the 'linux/'
subdirectory. The build system automatically searches the right '<libname>.mk'
file by evaluating the 'SPECS' configuration variable. If 'SPECS' is set to
'host linux', the build system will look into the directories './', './host',
and './linux'.