1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

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

This commit is contained in:
Oleg Hahm 2013-08-02 00:14:45 +02:00
parent 836ae0d291
commit 956f0e8656
3 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ ifneq (,$(findstring uart0,$(USEMODULE)))
endif
ifneq (,$(findstring cc110x,$(USEMODULE)))
ifeq (,$(findstring protocol-multiplex,$(USEMODULE)))
USEMODULE += protocol-multiplex
ifeq (,$(findstring protocol_multiplex,$(USEMODULE)))
USEMODULE += protocol_multiplex
endif
endif

View File

@ -70,7 +70,7 @@ endif
ifneq (,$(findstring net_help,$(USEMODULE)))
DIRS += net/net_help
endif
ifneq (,$(findstring protocol-multiplex,$(USEMODULE)))
ifneq (,$(findstring protocol_multiplex,$(USEMODULE)))
DIRS += net/protocol-multiplex
endif
ifneq (,$(findstring sixlowpan,$(USEMODULE)))

View File

@ -1,4 +1,4 @@
MODULE:=$(shell basename $(CURDIR))
MODULE:=protocol_multiplex
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include
include $(RIOTBASE)/Makefile.base