Skip to content
Snippets Groups Projects
Commit 71152395 authored by Simon Glass's avatar Simon Glass Committed by Wolfgang Denk
Browse files

sandbox: Disable standalone/API support


This is not useful on the sandbox architecture since we can simply link all
our code with U-Boot.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent fe34107e
No related branches found
No related tags found
No related merge requests found
...@@ -137,9 +137,7 @@ unexport CDPATH ...@@ -137,9 +137,7 @@ unexport CDPATH
# The "tools" are needed early, so put this first # The "tools" are needed early, so put this first
# Don't include stuff already done in $(LIBS) # Don't include stuff already done in $(LIBS)
SUBDIRS = tools \ SUBDIRS = tools
examples/standalone \
examples/api
.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
...@@ -156,6 +154,11 @@ sinclude $(obj)include/autoconf.mk ...@@ -156,6 +154,11 @@ sinclude $(obj)include/autoconf.mk
include $(obj)include/config.mk include $(obj)include/config.mk
export ARCH CPU BOARD VENDOR SOC export ARCH CPU BOARD VENDOR SOC
ifndef CONFIG_SANDBOX
SUBDIRS += examples/standalone \
examples/api
endif
# set default to nothing for native builds # set default to nothing for native builds
ifeq ($(HOSTARCH),$(ARCH)) ifeq ($(HOSTARCH),$(ARCH))
CROSS_COMPILE ?= CROSS_COMPILE ?=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment