aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2024-04-25 20:55:51 +0200
committerJan200101 <sentrycraft123@gmail.com>2024-04-25 20:55:51 +0200
commit9e902c8493df4cebb4bffc0ae5ddf6b6c5fd0b9f (patch)
treeb648236ac2c3c76c854e3dfdf5c70cc4670f9475
parent2da71ab755d1f444f2867b4dd75fe3e21e2c7395 (diff)
downloadShelSP-9e902c8493df4cebb4bffc0ae5ddf6b6c5fd0b9f.tar.gz
ShelSP-9e902c8493df4cebb4bffc0ae5ddf6b6c5fd0b9f.zip
cleanup component deps, add app target
-rw-r--r--Makefile4
-rw-r--r--main/idf_component.yml6
2 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 428ed16..3529a73 100644
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,10 @@ default: build
build:
@${IDF_PY} build
+.PHONY: app
+app:
+ @${IDF_PY} app
+
.PHONY: target-esp32
target-esp32: clean-build
idf.py set-target esp32
diff --git a/main/idf_component.yml b/main/idf_component.yml
index 6571fdc..0e17932 100644
--- a/main/idf_component.yml
+++ b/main/idf_component.yml
@@ -1,6 +1,10 @@
## IDF Component Manager Manifest File
dependencies:
- espressif/mdns: "*"
+ espressif/mdns:
+ version: "*"
+ rules:
+ - if: "target != linux"
+
## Required IDF version
idf:
version: ">=4.1.0"