zephyr/Makefile: Explicitly define default target as "all".
For some reason, with the latest Zephyr master, running just "make" led to executing Zephyr's "qemu" target.
This commit is contained in:
parent
0f12082f5b
commit
ca582675e1
|
@ -17,6 +17,9 @@ OUTDIR_PREFIX = $(BOARD)
|
|||
MICROPY_HEAP_SIZE = 16384
|
||||
FROZEN_DIR = scripts
|
||||
|
||||
# Default target
|
||||
all:
|
||||
|
||||
# Zephyr (generated) config files - must be defined before include below
|
||||
Z_EXPORTS = outdir/$(OUTDIR_PREFIX)/Makefile.export
|
||||
ifneq ($(MAKECMDGOALS), clean)
|
||||
|
|
Loading…
Reference in New Issue