2011-12-22 15:19:25 +00:00
|
|
|
#
|
|
|
|
# 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
|
2013-05-24 09:04:42 +00:00
|
|
|
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
|
2011-12-22 15:19:25 +00:00
|
|
|
SPECS ?= genode linux_x86_32 sdl
|
|
|
|
endif
|
2013-05-24 09:04:42 +00:00
|
|
|
endif
|
|
|
|
endif
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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
|