created own module for ieee802154

this is needed to include the ieee802154 in drivers without the hole sixlowpan
This commit is contained in:
Milan Babel 2013-05-28 10:02:35 +02:00
parent edb34b73c0
commit 2f5ed66756
4 changed files with 8 additions and 0 deletions

View File

@ -77,9 +77,13 @@ ifneq (,$(findstring protocol-multiplex,$(USEMODULE)))
DIRS += net/protocol-multiplex
endif
ifneq (,$(findstring sixlowpan,$(USEMODULE)))
DIRS += net/ieee802154
DIRS += net/sixlowpan
DIRS += net/sixlowpan/rpl
endif
ifneq (,$(findstring ieee802154,$(USEMODULE)))
DIRS += net/ieee802154
endif
all: $(BINDIR)$(MODULE).a
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

View File

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