mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 20:16:48 +00:00
ed52d5a211
Instead of holding SPEC-variable dependent files and directories inline within the repository structure, move them into 'spec' subdirectories at the corresponding levels, e.g.: repos/base/include/spec repos/base/mk/spec repos/base/lib/mk/spec repos/base/src/core/spec ... Moreover, this commit removes the 'platform' directories. That term was used in an overloaded sense. All SPEC-relative 'platform' directories are now named 'spec'. Other files, like for instance those related to the kernel/architecture specific startup library, where moved from 'platform' directories to explicit, more meaningful places like e.g.: 'src/lib/startup'. Fix #1673
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
#
|
|
# Specifics for the OKL4 kernel API
|
|
#
|
|
|
|
#
|
|
# Read default and builddir-specific config files
|
|
#
|
|
-include $(call select_from_repositories,etc/okl4.conf)
|
|
-include $(BUILD_BASE_DIR)/etc/okl4.conf
|
|
|
|
#
|
|
# If no OKL4 source directory is set, we use the standard contrib directory
|
|
#
|
|
OKL4_DIR ?= $(call select_from_ports,okl4)/src/kernel/okl4
|
|
|
|
#
|
|
# Make sure that symlink modification times are handled correctly.
|
|
# Otherwise, the creation of symlinks that depend on their own directory
|
|
# behaves like a phony rule. This is because the directory mtime is
|
|
# determined by taking the mtimes of containing symlinks into account.
|
|
# Hence, all symlinks (except for the youngest) depend on a directory
|
|
# with a newer mtime. The make flag -L fixes the problem. Alternatively,
|
|
# we could use 'cp' instead of 'ln'.
|
|
#
|
|
MAKEFLAGS += -L
|
|
|
|
#
|
|
# OKL4-specific Genode headers
|
|
#
|
|
INC_DIR += $(BUILD_BASE_DIR)/include
|
|
|
|
#
|
|
# Define maximum number of threads, needed by the OKL4 kernel headers
|
|
#
|
|
CC_OPT += -DCONFIG_MAX_THREAD_BITS=10
|
|
|
|
#
|
|
# Clean rules for removing the side effects of building the platform
|
|
# library
|
|
#
|
|
clean_includes:
|
|
$(VERBOSE)rm -rf $(BUILD_BASE_DIR)/include
|
|
|
|
clean_tool_elfweaver:
|
|
$(VERBOSE)rm -rf $(BUILD_BASE_DIR)/tool/okl4/elfweaver
|
|
|
|
clean cleanall: clean_includes clean_tool_elfweaver
|