Skip to content
Snippets Groups Projects
Commit 956f0e86 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

fix for #87, replacing - with _ in module protocol_multiplex

parent 836ae0d2
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,8 @@ ifneq (,$(findstring uart0,$(USEMODULE))) ...@@ -14,8 +14,8 @@ ifneq (,$(findstring uart0,$(USEMODULE)))
endif endif
ifneq (,$(findstring cc110x,$(USEMODULE))) ifneq (,$(findstring cc110x,$(USEMODULE)))
ifeq (,$(findstring protocol-multiplex,$(USEMODULE))) ifeq (,$(findstring protocol_multiplex,$(USEMODULE)))
USEMODULE += protocol-multiplex USEMODULE += protocol_multiplex
endif endif
endif endif
......
...@@ -70,7 +70,7 @@ endif ...@@ -70,7 +70,7 @@ endif
ifneq (,$(findstring net_help,$(USEMODULE))) ifneq (,$(findstring net_help,$(USEMODULE)))
DIRS += net/net_help DIRS += net/net_help
endif endif
ifneq (,$(findstring protocol-multiplex,$(USEMODULE))) ifneq (,$(findstring protocol_multiplex,$(USEMODULE)))
DIRS += net/protocol-multiplex DIRS += net/protocol-multiplex
endif endif
ifneq (,$(findstring sixlowpan,$(USEMODULE))) ifneq (,$(findstring sixlowpan,$(USEMODULE)))
......
MODULE:=$(shell basename $(CURDIR)) MODULE:=protocol_multiplex
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include
include $(RIOTBASE)/Makefile.base include $(RIOTBASE)/Makefile.base
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment