2013-02-15 22:17:42 +01:00
|
|
|
MODULE = drivers
|
|
|
|
|
2013-02-06 13:20:21 +01:00
|
|
|
DIRS=
|
|
|
|
ifneq (,$(findstring powermon,$(USEMODULE)))
|
|
|
|
DIRS += powermon
|
|
|
|
endif
|
2013-05-02 08:45:47 +02:00
|
|
|
ifneq (,$(findstring cc2420,$(USEMODULE)))
|
|
|
|
DIRS += cc2420
|
|
|
|
endif
|
2013-02-06 13:20:21 +01:00
|
|
|
ifneq (,$(findstring sht11,$(USEMODULE)))
|
|
|
|
DIRS += sht11
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring ltc4150,$(USEMODULE)))
|
|
|
|
DIRS += ltc4150
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring cc110x,$(USEMODULE)))
|
|
|
|
ifneq (,$(findstring cc110x_ng,$(USEMODULE)))
|
|
|
|
DIRS += cc110x_ng
|
|
|
|
else
|
|
|
|
DIRS += cc110x
|
|
|
|
endif
|
|
|
|
endif
|
2013-07-12 12:31:16 +02:00
|
|
|
ifneq (,$(findstring at86rf231,$(USEMODULE)))
|
|
|
|
DIRS += at86rf231
|
|
|
|
endif
|
2013-02-06 13:20:21 +01:00
|
|
|
ifneq (,$(findstring gps_ublox,$(USEMODULE)))
|
|
|
|
DIRS += gps_ublox
|
|
|
|
endif
|
2013-08-12 12:07:47 +02:00
|
|
|
ifneq (,$(findstring srf02,$(USEMODULE)))
|
|
|
|
DIRS += srf02
|
|
|
|
endif
|
2013-08-12 12:22:30 +02:00
|
|
|
ifneq (,$(findstring srf08,$(USEMODULE)))
|
|
|
|
DIRS += srf08
|
|
|
|
endif
|
2013-08-12 12:44:42 +02:00
|
|
|
ifneq (,$(findstring lm75a,$(USEMODULE)))
|
|
|
|
DIRS += lm75a
|
|
|
|
endif
|
2013-02-06 13:20:21 +01:00
|
|
|
|
|
|
|
all:
|
2013-08-12 12:07:47 +02:00
|
|
|
@for i in $(DIRS) ; do "$(MAKE)" -C $$i ; done ;
|
2013-02-06 13:20:21 +01:00
|
|
|
|
2013-03-09 23:47:21 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|
2013-02-06 13:20:21 +01:00
|
|
|
|
|
|
|
# remove compilation products
|
|
|
|
clean::
|
2013-08-12 12:07:47 +02:00
|
|
|
@for i in $(DIRS) ; do "$(MAKE)" -C $$i clean ; done ;
|
|
|
|
|