mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
#
|
|
# Specifics for the Fiasco.OC kernel API
|
|
#
|
|
|
|
-include $(call select_from_repositories,etc/foc.conf)
|
|
-include $(BUILD_BASE_DIR)/etc/foc.conf
|
|
|
|
#
|
|
# L4/sys headers
|
|
#
|
|
L4_INC_DIR += $(BUILD_BASE_DIR)/include/
|
|
L4F_INC_DIR += $(BUILD_BASE_DIR)/include/l4f
|
|
|
|
#
|
|
# L4 build directory, if not defined by 'foc.conf', use directory local
|
|
# to the Genode build directory.
|
|
#
|
|
L4_BUILD_DIR ?= $(BUILD_BASE_DIR)/l4
|
|
|
|
#
|
|
# Build everything with -fPIC because the Fiasco.OC syscall bindings
|
|
# rely on 'ebx' (on x86) being handled with care. Without -fPIC enabled,
|
|
# the syscall bindings break.
|
|
#
|
|
CC_OPT += -fPIC
|
|
|
|
#
|
|
# Use 'regparm=0' call instead of an inline function, when accessing
|
|
# the utcb. This is needed to stay compatible with L4linux
|
|
#
|
|
CC_OPT += -DL4SYS_USE_UTCB_WRAP=1
|
|
|
|
#
|
|
# Startup code to be used when building a program
|
|
#
|
|
STARTUP_LIB ?= startup
|
|
PRG_LIBS += $(STARTUP_LIB)
|
|
|
|
all:
|
|
|
|
#
|
|
# Clean rules for removing the side effects of building the platform
|
|
# library
|
|
#
|
|
clean_includes:
|
|
$(VERBOSE)rm -rf $(BUILD_BASE_DIR)/include
|
|
|
|
clean_contrib:
|
|
$(VERBOSE)rm -rf $(BUILD_BASE_DIR)/l4
|
|
|
|
cleanall: clean_contrib clean_includes
|
|
|