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