1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:29:45 +01:00

sys/senml: cleanup dependency resolution

This commit is contained in:
Alexandre Abadie 2023-04-21 09:56:28 +02:00
parent 090ccc5d21
commit 1c57e7355d
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 2 additions and 5 deletions

View File

@ -385,8 +385,8 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += saul_reg
endif
ifneq (,$(filter senml%,$(USEMODULE)))
include $(RIOTBASE)/sys/senml/Makefile.dep
ifneq (,$(filter senml_%,$(USEMODULE)))
USEMODULE += senml
endif
ifneq (,$(filter phydat,$(USEMODULE)))

View File

@ -1,5 +1,4 @@
ifneq (,$(filter senml_saul,$(USEMODULE)))
USEMODULE += senml
USEMODULE += senml_cbor
USEMODULE += senml_phydat
USEMODULE += saul_reg
@ -7,10 +6,8 @@ endif
ifneq (,$(filter senml_cbor,$(USEMODULE)))
USEPKG += nanocbor
USEMODULE += senml
endif
ifneq (,$(filter senml_phydat,$(USEMODULE)))
USEMODULE += senml
USEMODULE += phydat
endif