summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-01-18 15:30:11 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-01-18 15:30:11 +0000
commit39c368073b18e3140b029f95bf09dd8b8f4cc6ea (patch)
treebd1a1e011a33863523a7aaf76cab553a0984e748 /sys/arch/hp300
parent78aea5f5171c0a157f68fa98f35967d2f5991fbc (diff)
OpenBSD uses HOSTCC not HOSTED_CC, per tradition
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r--sys/arch/hp300/conf/Makefile.hp3008
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/conf/Makefile.hp300 b/sys/arch/hp300/conf/Makefile.hp300
index 25db7e22268..1db970d958e 100644
--- a/sys/arch/hp300/conf/Makefile.hp300
+++ b/sys/arch/hp300/conf/Makefile.hp300
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.hp300,v 1.10 1997/01/12 15:12:14 downsj Exp $
+# $OpenBSD: Makefile.hp300,v 1.11 1997/01/18 15:30:10 niklas Exp $
# $NetBSD: Makefile.hp300,v 1.45 1996/12/01 06:12:30 jonathan Exp $
# Makefile for OpenBSD
@@ -41,7 +41,7 @@ AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE
LINKFLAGS= -n -Ttext 0 -e start
STRIPFLAGS= -d
-HOSTED_CC= ${CC}
+HOSTCC= ${CC}
HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
HOSTED_CFLAGS= ${CFLAGS}
@@ -70,7 +70,7 @@ LIBCOMPAT= ${COMPATLIB_PROF}
NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $<
-HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
+HOSTED_C= ${HOSTCC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
%OBJS
@@ -107,7 +107,7 @@ assym.h: genassym
./genassym >assym.h
genassym: genassym.o
- ${CC} -o $@ genassym.o
+ ${HOSTCC} -o $@ genassym.o
genassym.o: ${HP300}/hp300/genassym.c
${HOSTED_C}