From e940f910b2f810e858d7ee415ae06bceb40de53a Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Mon, 29 May 2023 22:20:32 +0200 Subject: [PATCH] Updated makefile --- firmware/Makefile | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/firmware/Makefile b/firmware/Makefile index 5bb8443..688b486 100755 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -3,23 +3,17 @@ #PATH := /usr/local/bin:$(PATH) all: - platformio run + pio run upload: - platformio run --target upload + pio run -t upload clean: - platformio run --target clean + pio run -t clean -program: - platformio run --target program - -uploadfs: - platformio run --target uploadfs +db: + pio run -t compiledb update: - platformio update + pio update -bear: - platformio run --target clean - bear make all