diff options
author | 1996-03-25 23:31:14 +0000 | |
---|---|---|
committer | 1996-03-25 23:31:14 +0000 | |
commit | c412f7ac710e4dbf119d2baf809929426cef8d2d (patch) | |
tree | d30f957534210d33b4fe6509cada615cd475d652 /lib/libc/stdlib | |
parent | Make a proper lvalue in INC (diff) | |
download | wireguard-openbsd-c412f7ac710e4dbf119d2baf809929426cef8d2d.tar.xz wireguard-openbsd-c412f7ac710e4dbf119d2baf809929426cef8d2d.zip |
Add support for building lint(1) library
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index 782a4ab0225..625f0f9a91b 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -1,5 +1,5 @@ # from: @(#)Makefile.inc 5.6 (Berkeley) 6/4/91 -# $Id: Makefile.inc,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ +# $Id: Makefile.inc,v 1.2 1996/03/25 23:31:43 tholo Exp $ # stdlib sources .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib @@ -13,12 +13,16 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \ .if (${MACHINE_ARCH} == "m68k") SRCS+= abs.S div.c labs.c ldiv.c +LSRCS+= abs.c .elif (${MACHINE_ARCH} == "i386") SRCS+= abs.S div.S labs.S ldiv.S +LSRCS+= abs.c div.c labs.c ldiv.c .elif (${MACHINE_ARCH} == "ns32k") SRCS+= abs.S div.c labs.c ldiv.c +LSRCS+= abs.c .elif (${MACHINE_ARCH} == "tahoe") SRCS+= abs.S div.c labs.c ldiv.c +LSRCS+= abs.c .elif (${MACHINE_ARCH} == "vax") SRCS+= abs.c div.c labs.c ldiv.c .elif (${MACHINE_ARCH} == "alpha") |