mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
15 lines
242 B
Makefile
15 lines
242 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include/
|
|
COMPONENT_SRCDIRS := src/
|
|
|
|
ifdef CONFIG_JSMN_PARENT_LINKS
|
|
src/jsmn.o: CPPFLAGS += -DJSMN_PARENT_LINKS
|
|
endif
|
|
|
|
ifdef CONFIG_JSMN_STRICT
|
|
src/jsmn.o: CPPFLAGS += -DJSMN_STRICT
|
|
endif
|