Skip to content

Commit 768e360

Browse files
committed
Makefile: add print about build options
1 parent c350d4f commit 768e360

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@ CPPFLAGS += -DARDUINO
77
ifeq ($(RELEASE),1)
88
CFLAGS += -DNDEBUG -DCONFIG_FREERTOS_ASSERT_DISABLE -Os -DLOG_LOCAL_LEVEL=0
99
CPPFLAGS += -DNDEBUG -Os
10+
$(info RELEASE)
1011
endif
1112

1213
ifeq ($(UNO_WIFI_REV2),1)
1314
CFLAGS += -DUNO_WIFI_REV2
1415
CPPFLAGS += -DUNO_WIFI_REV2
16+
$(info UNO_WIFI_REV2)
1517
endif
1618

1719
ifeq ($(NANO_RP2040_CONNECT),1)
1820
CFLAGS += -DNANO_RP2040_CONNECT
1921
CPPFLAGS += -DNANO_RP2040_CONNECT
22+
$(info NANO_RP2040_CONNECT)
2023
endif
2124

2225
include $(IDF_PATH)/make/project.mk

0 commit comments

Comments
 (0)