created own module for ieee802154
this is needed to include the ieee802154 in drivers without the hole sixlowpan
This commit is contained in:
parent
edb34b73c0
commit
2f5ed66756
|
@ -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 ;
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue