diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-24 23:12:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-24 23:12:15 +0000 |
commit | 76daf3bd9e1578d85b9de7aaf1e84ca42b14a7d9 (patch) | |
tree | 5f9a2bef4c3f653169212aa9621211c8e2597f50 /sys/arch/hp300 | |
parent | 635ab50f8c711e7422085af2db271e16970d3a2e (diff) |
Harmonize and complete wrt cross-compilation.
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/conf/Makefile.hp300 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/hp300/conf/Makefile.hp300 b/sys/arch/hp300/conf/Makefile.hp300 index cc79484bbed..21e6a1efcc5 100644 --- a/sys/arch/hp300/conf/Makefile.hp300 +++ b/sys/arch/hp300/conf/Makefile.hp300 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.hp300,v 1.25 2001/12/14 08:51:19 miod Exp $ +# $OpenBSD: Makefile.hp300,v 1.26 2001/12/24 23:12:14 miod Exp $ # $NetBSD: Makefile.hp300,v 1.54 1997/04/01 23:16:41 scottr Exp $ # Makefile for OpenBSD @@ -24,12 +24,13 @@ .include <bsd.own.mk> +AS?= as CC?= cc +CPP?= cpp LD?= ld MKDEP?= mkdep +SIZE?= size STRIP?= strip -TOUCH?= touch -f -c -COPTS?= -O2 # source tree is located via $S relative to the compilation directory .ifndef S @@ -44,7 +45,7 @@ CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main CMACHFLAGS= -msoft-float - +COPTS?= -O2 CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${CMACHFLAGS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE LINKFLAGS= -n -Ttext 0 -e start @@ -134,7 +135,7 @@ SYSTEM_DEP= Makefile ${SYSTEM_OBJ} SYSTEM_LD_HEAD= @rm -f $@ SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o -SYSTEM_LD_TAIL= @size $@; chmod 755 $@ +SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= .if ${DEBUG} == "-g" |