| Kernel v2.4.19 /arch/alpha/Makefile |
|---|
 2.4.19
 arch
 alpha
 Makefile
diff -urN linux-2.4.18/arch/alpha/Makefile linux-2.4.19/arch/alpha/Makefile
--- linux-2.4.18/arch/alpha/Makefile Sun Dec 3 17:45:20 2000
+++ linux-2.4.19/arch/alpha/Makefile Fri Aug 2 17:39:42 2002
@@ -40,22 +40,22 @@
CFLAGS := $(CFLAGS) -mcpu=pca56
mcpu_done := y
endif
- ifeq ($(mcpu_done)$(CONFIG_ALPHA_PYXIS),ny)
- CFLAGS := $(CFLAGS) -mcpu=ev56
- mcpu_done := y
- endif
- ifeq ($(mcpu_done)$(CONFIG_ALPHA_POLARIS),ny)
- ifeq ($(have_mcpu_pca56),y)
- CFLAGS := $(CFLAGS) -mcpu=pca56
- else
- CFLAGS := $(CFLAGS) -mcpu=ev56
- endif
+ ifeq ($(mcpu_done)$(CONFIG_ALPHA_POLARIS)$(have_mcpu_pca56),nyy)
+ CFLAGS := $(CFLAGS) -mcpu=pca56
mcpu_done := y
endif
ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV4),ny)
CFLAGS := $(CFLAGS) -mcpu=ev4
mcpu_done := y
endif
+ ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV56),ny)
+ CFLAGS := $(CFLAGS) -mcpu=ev56
+ mcpu_done := y
+ endif
+ ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV5),ny)
+ CFLAGS := $(CFLAGS) -mcpu=ev5
+ mcpu_done := y
+ endif
ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV67)$(have_mcpu_ev67),nyy)
CFLAGS := $(CFLAGS) -mcpu=ev67
mcpu_done := y
|