Makefile 930 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# Makefile for the Atheros AR71XX/AR724X/AR913X specific parts of the kernel
#
# Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
# Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 as published
# by the Free Software Foundation.

G
Gabor Juhos 已提交
11
obj-y	:= prom.o setup.o irq.o common.o clock.o gpio.o
12 13 14 15 16 17 18

obj-$(CONFIG_EARLY_PRINTK)		+= early_printk.o

#
# Devices
#
obj-y					+= dev-common.o
19
obj-$(CONFIG_ATH79_DEV_AR913X_WMAC)	+= dev-ar913x-wmac.o
20
obj-$(CONFIG_ATH79_DEV_GPIO_BUTTONS)	+= dev-gpio-buttons.o
21
obj-$(CONFIG_ATH79_DEV_LEDS_GPIO)	+= dev-leds-gpio.o
22
obj-$(CONFIG_ATH79_DEV_SPI)		+= dev-spi.o
23
obj-$(CONFIG_ATH79_DEV_USB)		+= dev-usb.o
24 25 26 27

#
# Machines
#
28
obj-$(CONFIG_ATH79_MACH_AP121)		+= mach-ap121.o
29
obj-$(CONFIG_ATH79_MACH_AP81)		+= mach-ap81.o
30
obj-$(CONFIG_ATH79_MACH_PB44)		+= mach-pb44.o