23 lines
623 B
Makefile
23 lines
623 B
Makefile
subdir-ccflags-y += -I$(srctree)/include/drivers
|
|
|
|
obj-y = console/
|
|
obj-y += random/
|
|
obj-y += serial/
|
|
obj-$(CONFIG_SYS_CLOCK_EXISTS) += timer/
|
|
obj-y += interrupt_controller/
|
|
obj-$(CONFIG_GROVE) += grove/
|
|
obj-$(CONFIG_PCI) += pci/
|
|
obj-$(CONFIG_BLUETOOTH) += bluetooth/
|
|
obj-$(CONFIG_SHARED_IRQ) += shared_irq/
|
|
obj-$(CONFIG_SPI) += spi/
|
|
obj-$(CONFIG_GPIO) += gpio/
|
|
obj-$(CONFIG_I2C) += i2c/
|
|
obj-$(CONFIG_PWM) += pwm/
|
|
obj-$(CONFIG_ADC) += adc/
|
|
obj-$(CONFIG_ETHERNET) += ethernet/
|
|
obj-$(CONFIG_WATCHDOG) += watchdog/
|
|
obj-$(CONFIG_RTC) += rtc/
|
|
obj-$(CONFIG_CLOCK_CONTROL) += clock_control/
|
|
obj-$(CONFIG_IPM) += ipm/
|
|
obj-y += aio/
|