diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-19 21:27:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-19 21:27:14 +0000 |
commit | 4083bf5a48b82e608ea83992f2fbd4b25c28791f (patch) | |
tree | 6a911019f15f4bec6910dfd95fbe7b249c34be7a /lib/Makefile | |
parent | 75c04bb0c933ffc13a3dc9e0f2b13c226d0a7b88 (diff) |
XXX - Alpha port doesn't currently support weak symbols
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 0812a0c439b..46ee28f49a7 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,11 +1,16 @@ -# $OpenBSD: Makefile,v 1.37 2000/01/30 01:22:59 mickey Exp $ +# $OpenBSD: Makefile,v 1.38 2000/11/19 21:27:13 millert Exp $ # $NetBSD: Makefile,v 1.20.4.1 1996/06/14 17:22:38 cgd Exp $ -SUBDIR= csu libarch libc libc_r libcom_err libcompat libcurses libdes libedit \ +SUBDIR= csu libarch libc libcom_err libcompat libcurses libdes libedit \ libform libkeynote libl libm libmenu libocurses libossaudio libpanel \ libpcap libresolv librpcsvc libskey libssl libtelnet libutil libwrap \ liby libz +# XXX Temporary until libc_r builds on alpha again +.if ${MACHINE} != "alpha" +SUBDIR+= libc_r +.endif + # XXX Temporary until libcurses++ builds on mips again .if ${MACHINE_ARCH} != "mips" SUBDIR+= libcurses++ |