| 123456789101112131415161718 | ARCH:=			$(shell uname -m|sed -e "s/i.*86/x86/" -e "s/_\?64//")CPU_ARCH:=		$(shell gcc -dumpmachine | sed -e s'/-.*//' \			 -e 's/sparc.*/sparc/' \	   		 -e 's/arm.*/arm/g' \	 		 -e 's/m68k.*/m68k/' \			 -e 's/ppc/powerpc/g' \			 -e 's/v850.*/v850/g' \			 -e 's/sh[234]/sh/' \	   		 -e 's/mips-.*/mips/' \	  		 -e 's/mipsel-.*/mipsel/' \			 -e 's/cris.*/cris/' \			 -e 's/i[3-9]86/i686/' \	    		)KERNEL_VERSION:=	2.6.35KERNEL_RELEASE:=	1KERNEL_MD5SUM:=		091abeb4684ce03d1d936851618687b6TARGET_OPTIMIZATION:=	-Os -pipeTARGET_CFLAGS_ARCH:=    -march=native
 |