mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
419 B
Makefile
12 lines
419 B
Makefile
|
OPENTHREAD_DIR = $(RIOTBASE)/pkg/openthread
|
||
|
|
||
|
INCLUDES += -I$(OPENTHREAD_DIR)/include \
|
||
|
-I$(OPENTHREAD_DIR)/include/openthread \
|
||
|
-I$(BINDIRBASE)/pkg/$(BOARD)/openthread/output/include \
|
||
|
-I$(BINDIRBASE)/pkg/$(BOARD)/openthread/include/openthread \
|
||
|
|
||
|
ifneq (,$(filter openthread_contrib,$(USEMODULE)))
|
||
|
DIRS += $(OPENTHREAD_DIR)/contrib
|
||
|
DIRS += $(OPENTHREAD_DIR)/contrib/netdev
|
||
|
endif
|