diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-23 08:34:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-23 08:34:04 +0000 |
commit | 2bd9ae56cddf10aa6994fc3cfff636a92ae23609 (patch) | |
tree | a13425edb6ff05e2f476ac6a005090d911fc1a08 | |
parent | a1eb8123ce83a0081418f99a2705e57405dfb4ad (diff) |
quote type
-rw-r--r-- | sys/lib/libkern/Makefile.inc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/lib/libkern/Makefile.inc b/sys/lib/libkern/Makefile.inc index b1be031e65e..aa1001d759f 100644 --- a/sys/lib/libkern/Makefile.inc +++ b/sys/lib/libkern/Makefile.inc @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile.inc,v 1.3 1996/05/22 12:06:38 deraadt Exp $ -# $NetBSD: Makefile.inc,v 1.14 1996/05/11 16:13:39 mycroft Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1996/05/23 08:34:03 deraadt Exp $ +# $NetBSD: Makefile.inc,v 1.15 1996/05/20 17:23:25 mrg Exp $ # # NOTE: $S must correspond to the top of the 'sys' tree @@ -12,13 +12,13 @@ KERNLIB_PROF= ${KERNDST}/libkern.po KERNMAKE= \ cd ${KERNDST} && ${MAKE} -f ${KERNREL}${KERNDIR}/Makefile \ - CC="${CC}" CFLAGS="${CFLAGS}" \ - AS="${AS}" AFLAGS="${AFLAGS}" \ - LD="${LD}" \ - MACHINE="${MACHINE}" MACHINE_ARCH="${MACHINE_ARCH}" \ - KERNCPPFLAGS="${CPPFLAGS}" \ - KERNREL="${KERNREL}" \ - KERNDIR="${KERNDIR}" + CC='${CC}' CFLAGS='${CFLAGS}' \ + AS='${AS}' AFLAGS='${AFLAGS}' \ + LD='${LD}' \ + MACHINE='${MACHINE}' MACHINE_ARCH='${MACHINE_ARCH}' \ + KERNCPPFLAGS='${CPPFLAGS}' \ + KERNREL='${KERNREL}' \ + KERNDIR='${KERNDIR}' ${KERNLIB}: .NOTMAIN __always_make_kernlib @echo making sure the kern library is up to date... |