mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:32:45 +01:00
add Makefiles to sys/net
This commit is contained in:
parent
ec11e9b1f3
commit
4d73d17662
@ -1,4 +1,4 @@
|
||||
INCLUDES = -I$(RIOTBASE)/sys/include -I../../net -I../include -I../../lib -I../../../.. -I../../../cpu/ -I../../../core/include -I../../
|
||||
INCLUDES = -I$(RIOTBASE)/sys/include -I../../net -I../../net/protocol-multiplex -I../include -I../../lib -I../../../.. -I../../../cpu/ -I../../../core/include -I../../
|
||||
|
||||
MODULE =cc110x_ng
|
||||
|
||||
|
16
sys/Makefile
16
sys/Makefile
@ -68,6 +68,22 @@ endif
|
||||
ifneq (,$(findstring vtimer,$(USEMODULE)))
|
||||
DIRS += vtimer
|
||||
endif
|
||||
ifneq (,$(findstring destiny,$(USEMODULE)))
|
||||
DIRS += net/destiny
|
||||
endif
|
||||
ifneq (,$(findstring net_mm,$(USEMODULE)))
|
||||
DIRS += net/mm
|
||||
endif
|
||||
ifneq (,$(findstring net_help,$(USEMODULE)))
|
||||
DIRS += net/net_help
|
||||
endif
|
||||
ifneq (,$(findstring protocol-multiplex,$(USEMODULE)))
|
||||
DIRS += net/protocol-multiplex
|
||||
endif
|
||||
ifneq (,$(findstring sixlowpan,$(USEMODULE)))
|
||||
DIRS += net/sixlowpan
|
||||
DIRS += net/sixlowpan/rpl
|
||||
endif
|
||||
|
||||
all: $(BINDIR)$(MODULE).a
|
||||
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;
|
||||
|
4
sys/net/destiny/Makefile
Normal file
4
sys/net/destiny/Makefile
Normal 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
|
4
sys/net/net_help/Makefile
Normal file
4
sys/net/net_help/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
MODULE:=$(shell basename $(CURDIR))
|
||||
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
4
sys/net/protocol-multiplex/Makefile
Normal file
4
sys/net/protocol-multiplex/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
MODULE:=$(shell basename $(CURDIR))
|
||||
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
4
sys/net/sixlowpan/Makefile
Normal file
4
sys/net/sixlowpan/Makefile
Normal 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
|
4
sys/net/sixlowpan/rpl/Makefile
Normal file
4
sys/net/sixlowpan/rpl/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
MODULE:=$(shell basename $(CURDIR))
|
||||
INCLUDES = -I$(RIOTBASE) -I$(RIOTBASE)/sys/include -I$(RIOTBASE)/core/include
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
Loading…
Reference in New Issue
Block a user