summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-12-04 22:40:20 +0000
committerEric Andersen <andersen@codepoet.org>2002-12-04 22:40:20 +0000
commit8fc69335e9c6b53805a7bf883de7ac57b2f564b4 (patch)
tree11f78959e454d5121e351c45381e19d90a2c9238 /Rules.mak
parentd8b1702462fdcf890c03046da97c56d8055a4295 (diff)
Change some variable names so we are more consistant with what
the linux kernel uses. -Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rules.mak b/Rules.mak
index d212230c9..abe7696f2 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -42,8 +42,8 @@ NM= $(CROSS)nm
STRIPTOOL= $(CROSS)strip
# Select the compiler needed to build binaries for your development system
-NATIVE_CC=gcc
-NATIVE_CFLAGS=-O2 -Wall
+HOSTCC=gcc
+HOSTCFLAGS=-O2 -Wall
#--------------------------------------------------------
@@ -78,7 +78,7 @@ check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1;
AWK:=$(shell if [ -x /usr/bin/nawk ]; then echo "/usr/bin/nawk"; \
else echo "/usr/bin/awk"; fi)
-NATIVE_ARCH:= $(shell uname -m | sed \
+HOST_ARCH:= $(shell uname -m | sed \
-e 's/i.86/i386/' \
-e 's/sparc.*/sparc/' \
-e 's/arm.*/arm/g' \