mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
22 lines
524 B
Makefile
22 lines
524 B
Makefile
#
|
|
# Specifics for Linux on 32-bit x86
|
|
#
|
|
SPECS += linux x86_32
|
|
|
|
REP_INC_DIR += src/platform/x86_32
|
|
|
|
#
|
|
# We need to manually add the default linker script on the command line in case
|
|
# of standard library use. Otherwise, we were not able to extend it by the
|
|
# context area section.
|
|
#
|
|
ifeq ($(USE_HOST_LD_SCRIPT),yes)
|
|
LD_SCRIPT_DEFAULT = ldscripts/elf_i386.xc
|
|
endif
|
|
|
|
#
|
|
# Include less-specific configuration
|
|
#
|
|
include $(call select_from_repositories,mk/spec-x86_32.mk)
|
|
include $(call select_from_repositories,mk/spec-linux.mk)
|