diff options
author | 1998-02-14 02:37:06 +0000 | |
---|---|---|
committer | 1998-02-14 02:37:06 +0000 | |
commit | 376c93c11aabfa05ed1345b430bee512c22093ad (patch) | |
tree | d0a12d284d96d62b88a8aae8a5b4abdd9bfebcf5 /sys/lib/libkern | |
parent | urgh (diff) | |
download | wireguard-openbsd-376c93c11aabfa05ed1345b430bee512c22093ad.tar.xz wireguard-openbsd-376c93c11aabfa05ed1345b430bee512c22093ad.zip |
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}' |