mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
42 lines
770 B
Makefile
42 lines
770 B
Makefile
#
|
|
# Specifics for the pistachio kernel API
|
|
#
|
|
|
|
#
|
|
# Read default and builddir-specific config files
|
|
#
|
|
# In these config files, we expect to find the definition of PISTACHIO_USER_BUILD_DIR
|
|
#
|
|
-include $(call select_from_repositories,etc/pistachio.conf)
|
|
-include $(BUILD_BASE_DIR)/etc/pistachio.conf
|
|
|
|
PISTACHIO_USER_BUILD_DIR ?= $(BUILD_BASE_DIR)/l4
|
|
|
|
#
|
|
# Pistachio headers
|
|
#
|
|
INC_DIR += $(PISTACHIO_USER_BUILD_DIR)/include
|
|
|
|
#
|
|
# Pistachio-specific Genode headers
|
|
#
|
|
REP_INC_DIR += include/pistachio
|
|
|
|
#
|
|
# Startup code to be used when building a program
|
|
#
|
|
STARTUP_LIB ?= startup
|
|
PRG_LIBS += $(STARTUP_LIB)
|
|
|
|
#
|
|
# Linker options
|
|
#
|
|
CXX_LINK_OPT += -L$(PISTACHIO_USER_BUILD_DIR)/lib
|
|
EXT_OBJECTS += -ll4
|
|
|
|
clean_contrib:
|
|
$(VERBOSE)rm -rf $(BUILD_BASE_DIR)/l4
|
|
|
|
cleanall: clean_contrib
|
|
|