mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +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
31 lines
642 B
Plaintext
31 lines
642 B
Plaintext
#
|
|
# Description of build platform
|
|
#
|
|
|
|
#
|
|
# If you want to build the Linux-specific Genode
|
|
# binaries, use this config option.
|
|
#
|
|
ifeq ($(shell uname -m),x86_64)
|
|
SPECS ?= genode linux_x86_64 sdl
|
|
else
|
|
ifeq ($(shell uname -m),armv6l)
|
|
SPECS ?= genode linux_arm sdl arm_v6
|
|
else
|
|
ifeq ($(shell uname -m),armv7l)
|
|
SPECS ?= genode linux_arm sdl arm_v7a
|
|
else
|
|
SPECS ?= genode linux_x86_32 sdl
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# If you want to build for the host platform,
|
|
# use the following config option.
|
|
# You need to specify '32bit' additionally to 'host'
|
|
# to include the 32bit-specific Genode include path
|
|
# containing integer definitions.
|
|
#
|
|
#SPECS ?= host 32bit
|