From 66d9be373e9f07d54e2332afa09a9144de45a2e6 Mon Sep 17 00:00:00 2001 From: Renze Nicolai Date: Thu, 12 May 2022 22:42:35 +0200 Subject: [PATCH] Add default operation to Makefile: prepare, build and flash --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 1e8363a..8583a25 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,8 @@ SHELL := /usr/bin/env bash .PHONY: prepare clean build flash erase monitor menuconfig image qemu install +all: prepare build flash + prepare: git submodule update --init --recursive cd esp-idf; bash install.sh