diff options
Diffstat (limited to 'arch/mips/ralink/Makefile')
-rw-r--r-- | arch/mips/ralink/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/mips/ralink/Makefile b/arch/mips/ralink/Makefile new file mode 100644 index 000000000..26fabbdea --- /dev/null +++ b/arch/mips/ralink/Makefile | |||
@@ -0,0 +1,28 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0-only | ||
2 | # Makefile for the Ralink common stuff | ||
3 | # | ||
4 | # Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org> | ||
5 | # Copyright (C) 2013 John Crispin <john@phrozen.org> | ||
6 | |||
7 | obj-y := prom.o of.o reset.o | ||
8 | |||
9 | ifndef CONFIG_MIPS_GIC | ||
10 | obj-y += clk.o timer.o | ||
11 | endif | ||
12 | |||
13 | obj-$(CONFIG_CLKEVT_RT3352) += cevt-rt3352.o | ||
14 | |||
15 | obj-$(CONFIG_RALINK_ILL_ACC) += ill_acc.o | ||
16 | |||
17 | obj-$(CONFIG_IRQ_INTC) += irq.o | ||
18 | obj-$(CONFIG_MIPS_GIC) += irq-gic.o timer-gic.o | ||
19 | |||
20 | obj-$(CONFIG_SOC_RT288X) += rt288x.o | ||
21 | obj-$(CONFIG_SOC_RT305X) += rt305x.o | ||
22 | obj-$(CONFIG_SOC_RT3883) += rt3883.o | ||
23 | obj-$(CONFIG_SOC_MT7620) += mt7620.o | ||
24 | obj-$(CONFIG_SOC_MT7621) += mt7621.o | ||
25 | |||
26 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
27 | |||
28 | obj-$(CONFIG_DEBUG_FS) += bootrom.o | ||