diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-23 01:47:41 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-23 01:47:41 +0000 |
commit | 14b39a831f4b4120bdaea878ee1854853b9c2d02 (patch) | |
tree | 4c28c2dd70a14ff29a1ceeb7ce61031f094082a5 /sys/lib/libsa/Makefile.inc | |
parent | 8b961a86be378f9dccb62b79de7fe25d9ef1d8a5 (diff) |
Add MI loadfile support, from NetBSD
This is currently only used on powerpc, but may be looked
at for other architectures.
Piece of the support to have kernel symbols on powerpc.
Diffstat (limited to 'sys/lib/libsa/Makefile.inc')
-rw-r--r-- | sys/lib/libsa/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/lib/libsa/Makefile.inc b/sys/lib/libsa/Makefile.inc index 788b2ce7be5..bfea2ec4f16 100644 --- a/sys/lib/libsa/Makefile.inc +++ b/sys/lib/libsa/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.9 1997/06/20 21:43:16 grr Exp $ +# $OpenBSD: Makefile.inc,v 1.10 2001/06/23 01:47:40 drahn Exp $ # $NetBSD: Makefile.inc,v 1.5 1996/09/30 16:01:18 ws Exp $ # # NOTE: $S must correspond to the top of the 'sys' tree @@ -23,6 +23,9 @@ SAMAKE+= NO_NET="" .if defined(SA_ZLIB) SAMAKE+= SA_ZLIB="" .endif +.if defined(USE_LOADFILE) +SAMAKE+= USE_LOADFILE="" +.endif ${SALIB}: .NOTMAIN __always_make_salib @echo making sure the stand-alone library is up to date... |