mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14 lines
393 B
Makefile
14 lines
393 B
Makefile
export INCLUDES += -I$(RIOTBOARD)/wsn430-v1_4/include -I$(RIOTBOARD)/wsn430-common/include
|
|
|
|
ifeq (,$(findstring cc2420,$(USEMODULE)))
|
|
USEMODULE += cc2420
|
|
endif
|
|
|
|
ifneq (,$(findstring cc2420,$(USEMODULE)))
|
|
INCLUDES += -I$(RIOTBASE)/drivers/cc2420/include \
|
|
-I$(RIOTBASE)/sys/net/include
|
|
endif
|
|
|
|
include $(RIOTBOARD)/$(BOARD)/Makefile.dep
|
|
include $(RIOTBOARD)/wsn430-common/Makefile.include
|