From b4ea94ab9431d571a417b4212a043e1ed428f088 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Mon, 29 May 2023 23:42:04 +0200 Subject: [PATCH] Updated makefile --- firmware/Makefile | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/firmware/Makefile b/firmware/Makefile index 21753a6..ac1d088 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -3,17 +3,11 @@ #PATH := /usr/local/bin:$(PATH) all: - pio run - -upload: - pio run --target upload + pio run && pio run -t compiledb clean: - pio run --target clean + pio run --t clean -program: - pio run --target program - -db: - pio run -t compiledb +upload: + pio run --t upload