1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/drivers/Makefile

60 lines
1.3 KiB
Makefile
Raw Normal View History

2014-02-14 14:30:16 +01:00
ifneq (,$(filter powermon,$(USEMODULE)))
DIRS += powermon
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter cc2420,$(USEMODULE)))
DIRS += cc2420
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter sht11,$(USEMODULE)))
DIRS += sht11
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter ltc4150,$(USEMODULE)))
DIRS += ltc4150
endif
ifneq (,$(filter cc110x_legacy_csma,$(USEMODULE)))
DIRS += cc110x_legacy_csma
2014-02-15 12:48:11 +01:00
endif
ifneq (,$(filter cc110x_legacy,$(USEMODULE)))
DIRS += cc110x_legacy
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter at86rf231,$(USEMODULE)))
DIRS += at86rf231
endif
2014-02-14 14:30:16 +01:00
ifneq (,$(filter gps_ublox,$(USEMODULE)))
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)))
DIRS += lm75a
endif
2014-02-27 18:20:56 +01:00
ifneq (,$(filter rgbled,$(USEMODULE)))
DIRS += rgbled
endif
2014-07-22 19:08:57 +02:00
ifneq (,$(filter servo,$(USEMODULE)))
DIRS += servo
endif
ifneq (,$(filter pir,$(USEMODULE)))
DIRS += pir
endif
ifneq (,$(filter netdev_base,$(USEMODULE)))
DIRS += netdev/base
endif
ifneq (,$(filter isl29020,$(USEMODULE)))
DIRS += isl29020
endif
ifneq (,$(filter mq3,$(USEMODULE)))
DIRS += mq3
endif
ifneq (,$(filter lps331ap,$(USEMODULE)))
DIRS += lps331ap
endif
ifneq (,$(filter netdev_802154,$(USEMODULE)))
DIRS += netdev/802154
endif
include $(RIOTBASE)/Makefile.base