Merge pull request #7573 from haukepetersen/fix_makedep_indention
make: fixed indention in (drivers/)Makefile.dep
This commit is contained in:
commit
7f7c2f15e4
@ -536,7 +536,7 @@ ifneq (,$(filter pthread,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter schedstatistics,$(USEMODULE)))
|
ifneq (,$(filter schedstatistics,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter arduino,$(USEMODULE)))
|
ifneq (,$(filter arduino,$(USEMODULE)))
|
||||||
@ -573,7 +573,7 @@ ifneq (,$(filter evtimer,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter can_linux,$(USEMODULE)))
|
ifneq (,$(filter can_linux,$(USEMODULE)))
|
||||||
export LINKFLAGS += -lsocketcan
|
export LINKFLAGS += -lsocketcan
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter can,$(USEMODULE)))
|
ifneq (,$(filter can,$(USEMODULE)))
|
||||||
@ -659,5 +659,5 @@ endif
|
|||||||
USEMODULE := $(sort $(USEMODULE))
|
USEMODULE := $(sort $(USEMODULE))
|
||||||
USEPKG := $(sort $(USEPKG))
|
USEPKG := $(sort $(USEPKG))
|
||||||
ifneq ($(OLD_USEMODULE) $(OLD_USEPKG),$(USEMODULE) $(USEPKG))
|
ifneq ($(OLD_USEMODULE) $(OLD_USEPKG),$(USEMODULE) $(USEPKG))
|
||||||
include $(RIOTBASE)/Makefile.dep
|
include $(RIOTBASE)/Makefile.dep
|
||||||
endif
|
endif
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# driver dependencies (in alphabetical order)
|
# driver dependencies (in alphabetical order)
|
||||||
|
|
||||||
ifneq (,$(filter adxl345,$(USEMODULE)))
|
ifneq (,$(filter adxl345,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_i2c
|
FEATURES_REQUIRED += periph_i2c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter apa102,$(USEMODULE)))
|
ifneq (,$(filter apa102,$(USEMODULE)))
|
||||||
@ -21,8 +21,8 @@ ifneq (,$(filter at86rf2%,$(USEMODULE)))
|
|||||||
USEMODULE += ieee802154
|
USEMODULE += ieee802154
|
||||||
USEMODULE += netdev_ieee802154
|
USEMODULE += netdev_ieee802154
|
||||||
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
||||||
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
||||||
# as all drivers are ported to netdev
|
# as all drivers are ported to netdev
|
||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@ -34,8 +34,8 @@ ifneq (,$(filter mrf24j40,$(USEMODULE)))
|
|||||||
USEMODULE += ieee802154
|
USEMODULE += ieee802154
|
||||||
USEMODULE += netdev_ieee802154
|
USEMODULE += netdev_ieee802154
|
||||||
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
||||||
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
||||||
# as all drivers are ported to netdev
|
# as all drivers are ported to netdev
|
||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@ -46,14 +46,14 @@ ifneq (,$(filter bh1750fvi,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter bmp180,$(USEMODULE)))
|
ifneq (,$(filter bmp180,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_i2c
|
FEATURES_REQUIRED += periph_i2c
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter bm%280,$(USEMODULE)))
|
ifneq (,$(filter bm%280,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_i2c
|
FEATURES_REQUIRED += periph_i2c
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
USEMODULE += bmx280
|
USEMODULE += bmx280
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter cc110x,$(USEMODULE)))
|
ifneq (,$(filter cc110x,$(USEMODULE)))
|
||||||
@ -62,9 +62,9 @@ ifneq (,$(filter cc110x,$(USEMODULE)))
|
|||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
||||||
USEMODULE += gnrc_cc110x
|
USEMODULE += gnrc_cc110x
|
||||||
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
||||||
# as all drivers are ported to netdev
|
# as all drivers are ported to netdev
|
||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -75,8 +75,8 @@ ifneq (,$(filter cc2420,$(USEMODULE)))
|
|||||||
USEMODULE += ieee802154
|
USEMODULE += ieee802154
|
||||||
USEMODULE += netdev_ieee802154
|
USEMODULE += netdev_ieee802154
|
||||||
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
||||||
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
||||||
# as all drivers are ported to netdev
|
# as all drivers are ported to netdev
|
||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
endif
|
endif
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
@ -84,8 +84,8 @@ ifneq (,$(filter cc2420,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter dht,$(USEMODULE)))
|
ifneq (,$(filter dht,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter ds1307,$(USEMODULE)))
|
ifneq (,$(filter ds1307,$(USEMODULE)))
|
||||||
@ -93,9 +93,9 @@ ifneq (,$(filter ds1307,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter dsp0401,$(USEMODULE)))
|
ifneq (,$(filter dsp0401,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
FEATURES_REQUIRED += periph_pwm
|
FEATURES_REQUIRED += periph_pwm
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter enc28j60,$(USEMODULE)))
|
ifneq (,$(filter enc28j60,$(USEMODULE)))
|
||||||
@ -110,9 +110,9 @@ ifneq (,$(filter encx24j600,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter ethos,$(USEMODULE)))
|
ifneq (,$(filter ethos,$(USEMODULE)))
|
||||||
USEMODULE += netdev_eth
|
USEMODULE += netdev_eth
|
||||||
USEMODULE += random
|
USEMODULE += random
|
||||||
USEMODULE += tsrb
|
USEMODULE += tsrb
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter hdc1000,$(USEMODULE)))
|
ifneq (,$(filter hdc1000,$(USEMODULE)))
|
||||||
@ -129,71 +129,71 @@ ifneq (,$(filter io1_xplained,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter jc42,$(USEMODULE)))
|
ifneq (,$(filter jc42,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_i2c
|
FEATURES_REQUIRED += periph_i2c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter kw2xrf,$(USEMODULE)))
|
ifneq (,$(filter kw2xrf,$(USEMODULE)))
|
||||||
USEMODULE += luid
|
USEMODULE += luid
|
||||||
USEMODULE += netif
|
USEMODULE += netif
|
||||||
USEMODULE += ieee802154
|
USEMODULE += ieee802154
|
||||||
USEMODULE += netdev_ieee802154
|
USEMODULE += netdev_ieee802154
|
||||||
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
|
||||||
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
# XXX: this can be modelled as a dependency for gnrc_netdev_default as soon
|
||||||
# as all drivers are ported to netdev
|
# as all drivers are ported to netdev
|
||||||
USEMODULE += gnrc_netdev
|
USEMODULE += gnrc_netdev
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter hd44780,$(USEMODULE)))
|
ifneq (,$(filter hd44780,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter lis3dh,$(USEMODULE)))
|
ifneq (,$(filter lis3dh,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
FEATURES_REQUIRED += periph_spi
|
FEATURES_REQUIRED += periph_spi
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter lm75a,$(USEMODULE)))
|
ifneq (,$(filter lm75a,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter lpd8808,$(USEMODULE)))
|
ifneq (,$(filter lpd8808,$(USEMODULE)))
|
||||||
USEMODULE += color
|
USEMODULE += color
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter mpu9150,$(USEMODULE)))
|
ifneq (,$(filter mpu9150,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter mtd_sdcard,$(USEMODULE)))
|
ifneq (,$(filter mtd_sdcard,$(USEMODULE)))
|
||||||
USEMODULE += mtd
|
USEMODULE += mtd
|
||||||
USEMODULE += sdcard_spi
|
USEMODULE += sdcard_spi
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter grove_ledbar,$(USEMODULE)))
|
ifneq (,$(filter grove_ledbar,$(USEMODULE)))
|
||||||
USEMODULE += my9221
|
USEMODULE += my9221
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter my9221,$(USEMODULE)))
|
ifneq (,$(filter my9221,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter nrfmin,$(USEMODULE)))
|
ifneq (,$(filter nrfmin,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += radio_nrfmin
|
FEATURES_REQUIRED += radio_nrfmin
|
||||||
FEATURES_REQUIRED += periph_cpuid
|
FEATURES_REQUIRED += periph_cpuid
|
||||||
USEMODULE += netif
|
USEMODULE += netif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter nvram_spi,$(USEMODULE)))
|
ifneq (,$(filter nvram_spi,$(USEMODULE)))
|
||||||
USEMODULE += nvram
|
USEMODULE += nvram
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter pcd8544,$(USEMODULE)))
|
ifneq (,$(filter pcd8544,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter rgbled,$(USEMODULE)))
|
ifneq (,$(filter rgbled,$(USEMODULE)))
|
||||||
@ -207,12 +207,12 @@ ifneq (,$(filter sdcard_spi,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter sht11,$(USEMODULE)))
|
ifneq (,$(filter sht11,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter si70xx,$(USEMODULE)))
|
ifneq (,$(filter si70xx,$(USEMODULE)))
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
FEATURES_REQUIRED += periph_i2c
|
FEATURES_REQUIRED += periph_i2c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter srf02,$(USEMODULE)))
|
ifneq (,$(filter srf02,$(USEMODULE)))
|
||||||
@ -246,17 +246,17 @@ ifneq (,$(filter xbee,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter uart_half_duplex,$(USEMODULE)))
|
ifneq (,$(filter uart_half_duplex,$(USEMODULE)))
|
||||||
FEATURES_REQUIRED += periph_gpio
|
FEATURES_REQUIRED += periph_gpio
|
||||||
FEATURES_REQUIRED += periph_uart
|
FEATURES_REQUIRED += periph_uart
|
||||||
USEMODULE += xtimer
|
USEMODULE += xtimer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter feetech,$(USEMODULE)))
|
ifneq (,$(filter feetech,$(USEMODULE)))
|
||||||
USEMODULE += uart_half_duplex
|
USEMODULE += uart_half_duplex
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter dynamixel,$(USEMODULE)))
|
ifneq (,$(filter dynamixel,$(USEMODULE)))
|
||||||
USEMODULE += uart_half_duplex
|
USEMODULE += uart_half_duplex
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter mtd_spi_nor,$(USEMODULE)))
|
ifneq (,$(filter mtd_spi_nor,$(USEMODULE)))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user