d2af363cfb
Many Makefiles in arch/mips have EXTRA_AFLAGS := $(CFLAGS) line. This is redundant while AFLAGS contains $(cflags-y) and any options only listed in CFLAGS (not in cflags-y) should be unnecessary for asm sources. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
715 B
Makefile
23 lines
715 B
Makefile
#
|
|
# Makefile for MIPS-specific library files..
|
|
#
|
|
|
|
lib-y += watch.o
|
|
|
|
obj-$(CONFIG_CPU_MIPS32) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_MIPS64) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R10000) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o
|
|
obj-$(CONFIG_CPU_R4300) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R4X00) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R5000) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R5432) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_R6000) +=
|
|
obj-$(CONFIG_CPU_R8000) +=
|
|
obj-$(CONFIG_CPU_RM7000) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_RM9000) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_SB1) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_TX39XX) += r3k_dump_tlb.o
|
|
obj-$(CONFIG_CPU_TX49XX) += dump_tlb.o
|
|
obj-$(CONFIG_CPU_VR41XX) += dump_tlb.o
|