* fixed double cc110x_ng entry in drivers makefile

* tidied up sys directory
dev/timer
Oleg Hahm 10 years ago
parent 5df0bd0cc4
commit 0f5dcdae98

@ -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 ;

@ -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

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

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