Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

alpha: change to new Makefile flag variables

Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>

authored by

matt mooney and committed by
Matt Turner
8a362cd6 7d209c81

+7 -7
+2 -2
arch/alpha/kernel/Makefile
··· 3 3 # 4 4 5 5 extra-y := head.o vmlinux.lds 6 - EXTRA_AFLAGS := $(KBUILD_CFLAGS) 7 - EXTRA_CFLAGS := -Werror -Wno-sign-compare 6 + asflags-y := $(KBUILD_CFLAGS) 7 + ccflags-y := -Werror -Wno-sign-compare 8 8 9 9 obj-y := entry.o traps.o process.o init_task.o osf_sys.o irq.o \ 10 10 irq_alpha.o signal.o setup.o ptrace.o time.o \
+2 -2
arch/alpha/lib/Makefile
··· 2 2 # Makefile for alpha-specific library files.. 3 3 # 4 4 5 - EXTRA_AFLAGS := $(KBUILD_CFLAGS) 6 - EXTRA_CFLAGS := -Werror 5 + asflags-y := $(KBUILD_CFLAGS) 6 + ccflags-y := -Werror 7 7 8 8 # Many of these routines have implementations tuned for ev6. 9 9 # Choose them iff we're targeting ev6 specifically.
+1 -1
arch/alpha/math-emu/Makefile
··· 2 2 # Makefile for the FPU instruction emulation. 3 3 # 4 4 5 - EXTRA_CFLAGS := -w 5 + ccflags-y := -w 6 6 7 7 obj-$(CONFIG_MATHEMU) += math-emu.o 8 8
+1 -1
arch/alpha/mm/Makefile
··· 2 2 # Makefile for the linux alpha-specific parts of the memory manager. 3 3 # 4 4 5 - EXTRA_CFLAGS := -Werror 5 + ccflags-y := -Werror 6 6 7 7 obj-y := init.o fault.o extable.o 8 8
+1 -1
arch/alpha/oprofile/Makefile
··· 1 - EXTRA_CFLAGS := -Werror -Wno-sign-compare 1 + ccflags-y := -Werror -Wno-sign-compare 2 2 3 3 obj-$(CONFIG_OPROFILE) += oprofile.o 4 4