1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/Makefile

45 lines
939 B
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
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
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
include $(RIOTBASE)/Makefile.base