diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-02-14 02:37:07 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-02-14 02:37:07 +0000 |
commit | 55b4eda4e8c78d697c3b6867d3f9da7f0d5427eb (patch) | |
tree | dc4c047320abc8507d475f705444a508cad592cf /sys/lib/libkern | |
parent | 05c67afaa899e8d14b26ee613e43ece5dc459788 (diff) |
Added CPP, STRIP, AR, NM and LORDER to KERNMAKE, to facilitate cross-compiling
kernels when using tools built from 'make cross-tools'.
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libkern/Makefile.inc b/sys/lib/libkern/Makefile.inc index a92377e9635..e43456e89dd 100644 --- a/sys/lib/libkern/Makefile.inc +++ b/sys/lib/libkern/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.8 1997/06/19 18:23:21 grr Exp $ +# $OpenBSD: Makefile.inc,v 1.9 1998/02/14 02:37:06 d Exp $ # $NetBSD: Makefile.inc,v 1.22 1996/09/30 15:54:35 ws Exp $ # # NOTE: $S must correspond to the top of the 'sys' tree @@ -21,6 +21,8 @@ KERNMAKE= \ CC='${CC}' CFLAGS='${CFLAGS}' \ AS='${AS}' AFLAGS='${AFLAGS}' \ LD='${LD}' STRIP='${STRIP}' \ + CPP='${CPP}' STRIP='${STRIP}' AR='${AR}' \ + NM='${NM}' LORDER='${LORDER}' \ MACHINE='${MACHINE}' MACHINE_ARCH='${MACHINE_ARCH}' \ KERNCPPFLAGS='${CPPFLAGS:S@^-I.@-I../../.@g}' |