This is external source code maintained somewhere else. Put it under ext/ for clarity and maintainability. Change-Id: I9e7c9d0948a2ba893006e316dc21d9b1a9edfa93 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
29 lines
874 B
Makefile
29 lines
874 B
Makefile
subdir-ccflags-y += -I$(srctree)/include/drivers
|
|
|
|
include $(srctree)/ext/hal/qmsi/Makefile.include
|
|
|
|
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_FLASH) += flash/
|
|
obj-$(CONFIG_COUNTER) += counter/
|
|
obj-$(CONFIG_GPIO) += gpio/
|
|
obj-$(CONFIG_I2C) += i2c/
|
|
obj-$(CONFIG_PWM) += pwm/
|
|
obj-$(CONFIG_ADC) += adc/
|
|
obj-$(CONFIG_ETHERNET) += ethernet/
|
|
obj-$(CONFIG_NETWORKING_WITH_15_4) += ieee802154/
|
|
obj-$(CONFIG_WATCHDOG) += watchdog/
|
|
obj-$(CONFIG_RTC) += rtc/
|
|
obj-$(CONFIG_CLOCK_CONTROL) += clock_control/
|
|
obj-$(CONFIG_IPM) += ipm/
|
|
obj-$(CONFIG_SENSOR) += sensor/
|
|
obj-$(CONFIG_AIO_COMPARATOR) += aio/
|
|
obj-$(CONFIG_PINMUX) += pinmux/
|