mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-14 00:37:41 -04:00
dtc: Don't build tests as part of "all"
Currently "make all" for dtc will build (but not run) the testcase binaries. This is a problem for cross compiles, because building the tests will attempt to run the dumptrees utility on the host system, which won't work if it's cross-compiled of course. Although it would be possible to separately build host binaries, there's not a lot of value in doing so since we don't have a facility for cross-executing the testsuite anyway. Therefore, remove the tests from the "all" target. It will still, of course, be build as a prerequisite to "make check" which will run the testsuite. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
30f7fbfbe9
commit
d6f9b62fe1
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -46,7 +46,7 @@ else
|
||||||
DEPTARGETS = $(filter-out $(NODEPTARGETS),$(MAKECMDGOALS))
|
DEPTARGETS = $(filter-out $(NODEPTARGETS),$(MAKECMDGOALS))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: dtc ftdump libfdt tests
|
all: dtc ftdump libfdt
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
@$(VECHO) INSTALL
|
@$(VECHO) INSTALL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue