From: Kenn H. <ke...@us...> - 2005-04-07 22:56:34
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32722/arch/vax Modified Files: Makefile Log Message: Revert the top-level Makefile to pristine condition. Side effect is that we will have to start using ARCH=vax on our make command line (or define ARCH=vax in the environment). We should get used to doing this anyway, since we'll have to do it once we merge with mainline. Of course, VAX hackers are free to locally modify their Makefile to set ARCH ?= vax, as long as this doesn't get committed to CVS Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- Makefile 18 Nov 2004 09:41:58 -0000 1.34 +++ Makefile 7 Apr 2005 22:56:26 -0000 1.35 @@ -12,15 +12,14 @@ # Copyright (C) 1994 by Linus Torvalds # +CROSS_COMPILE := vax-dec-linux- LDFLAGS_BLOB := --format binary --oformat elf32-vax # Note that this CFLAGS definition will override the definition # in the top-level Makefile. We want -O1, not -O2. -# Disabled for now, since we're hard-coding -O1 in top-level Makefile -# until we find a better way -#CFLAGS := $(subst -O2,-O1,$(CFLAGS) ) +CFLAGS := $(subst -O2,-O1,$(CFLAGS) ) # These flags are used by the top-level makefile when linking |