Makefile 334 B

123456789101112131415161718
  1. #
  2. # Makefile for the linux kernel.
  3. #
  4. # Object file lists.
  5. obj-y += irq.o time.o dma.o generic.o clock.o
  6. obj-$(CONFIG_CPU_FREQ_IMX) += cpufreq.o
  7. # Specific board support
  8. obj-$(CONFIG_ARCH_MX1ADS) += mx1ads.o
  9. # Support for blinky lights
  10. led-y := leds.o
  11. obj-$(CONFIG_LEDS) += $(led-y)
  12. led-$(CONFIG_ARCH_MX1ADS) += leds-mx1ads.o