1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 08:21:18 +01:00

* fixed double cc110x_ng entry in drivers makefile

* tidied up sys directory
This commit is contained in:
Oleg Hahm 2013-02-08 19:10:33 +01:00
parent 5df0bd0cc4
commit 0f5dcdae98
6 changed files with 16 additions and 3 deletions

View File

@ -18,9 +18,6 @@ endif
ifneq (,$(findstring gps_ublox,$(USEMODULE)))
DIRS += gps_ublox
endif
ifneq (,$(findstring cc110x_ng,$(USEMODULE)))
DIRS += cc110x_ng
endif
all:
@for i in $(DIRS) ; do $(MAKE) -C $$i ; done ;

View File

@ -23,6 +23,9 @@ endif
ifneq (,$(findstring mprint,$(USEMODULE)))
DIRS += mprint
endif
ifneq (,$(findstring ping,$(USEMODULE)))
DIRS += ping
endif
ifneq (,$(findstring ps,$(USEMODULE)))
DIRS += ps
endif
@ -47,6 +50,9 @@ endif
ifneq (,$(findstring shell_commands,$(USEMODULE)))
DIRS += shell/commands
endif
ifneq (,$(findstring swtimer,$(USEMODULE)))
DIRS += swtimer
endif
ifneq (,$(findstring timex,$(USEMODULE)))
DIRS += timex
endif

5
sys/ping/makefile Normal file
View File

@ -0,0 +1,5 @@
INCLUDES = -I../include -I$(RIOTBASE)/core/include/ -I$(RIOTBASE)/drivers/include
MODULE =ping
include $(RIOTBASE)/makefile.base

5
sys/swtimer/makefile Normal file
View File

@ -0,0 +1,5 @@
INCLUDES = -I../include -I$(RIOTBASE)/core/include/ -I$(RIOTBASE)/drivers/include
MODULE =swtimer
include $(RIOTBASE)/makefile.base