summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libarch/Makefile.inc3
-rw-r--r--lib/libc/Makefile4
-rw-r--r--lib/libc/string/Makefile.inc22
-rw-r--r--lib/libcompat/Makefile3
-rw-r--r--lib/libcurses/Makefile3
-rw-r--r--lib/libedit/Makefile3
-rw-r--r--lib/libevent/Makefile3
-rw-r--r--lib/libexpat/Makefile3
-rw-r--r--lib/libform/Makefile1
-rw-r--r--lib/libgssapi/Makefile3
-rw-r--r--lib/libkadm5clnt/Makefile3
-rw-r--r--lib/libkadm5srv/Makefile3
-rw-r--r--lib/libkeynote/Makefile3
-rw-r--r--lib/libkrb5/Makefile3
-rw-r--r--lib/libkvm/Makefile3
-rw-r--r--lib/libl/Makefile3
-rw-r--r--lib/libm/Makefile3
-rw-r--r--lib/libmenu/Makefile3
-rw-r--r--lib/libocurses/Makefile3
-rw-r--r--lib/libossaudio/Makefile3
-rw-r--r--lib/libpanel/Makefile3
-rw-r--r--lib/libpcap/Makefile3
-rw-r--r--lib/librpcsvc/Makefile3
-rw-r--r--lib/librthread/Makefile4
-rw-r--r--lib/libskey/Makefile3
-rw-r--r--lib/libssl/crypto/Makefile3
-rw-r--r--lib/libssl/ssl/Makefile3
-rw-r--r--lib/libusbhid/Makefile3
-rw-r--r--lib/libutil/Makefile3
-rw-r--r--lib/libwrap/Makefile3
-rw-r--r--lib/liby/Makefile3
-rw-r--r--lib/libz/Makefile3
32 files changed, 31 insertions, 84 deletions
diff --git a/lib/libarch/Makefile.inc b/lib/libarch/Makefile.inc
index 53fc0b8632e..1b1981804d0 100644
--- a/lib/libarch/Makefile.inc
+++ b/lib/libarch/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.3 2005/11/24 20:49:14 deraadt Exp $
+# $OpenBSD: Makefile.inc,v 1.4 2012/08/02 13:38:38 okan Exp $
# $NetBSD: Makefile.inc,v 1.1 1996/02/21 02:43:57 jtk Exp $
#
# This Makefile includes boiler-plate stuff included by each subdir's Makefile.
@@ -8,4 +8,3 @@ POBJS+= ${ASM:.o=.po}
CLEANFILES+= ${ASM} ${POBJS}
LIB= ${MACHINE_ARCH}
-WANTLINT=
diff --git a/lib/libc/Makefile b/lib/libc/Makefile
index 85feed2a1cb..54746afbaae 100644
--- a/lib/libc/Makefile
+++ b/lib/libc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.29 2010/02/03 20:49:00 miod Exp $
+# $OpenBSD: Makefile,v 1.30 2012/08/02 13:38:38 okan Exp $
#
# The NLS (message catalog) functions are always in libc. To choose that
# strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
@@ -10,8 +10,6 @@
.include <bsd.own.mk>
LIB=c
-WANTLINT=
-LINTFLAGS=-z
CLEANFILES+=tags
#CFLAGS+=-Werror
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc
index 25e67e4f875..6b78a4d007b 100644
--- a/lib/libc/string/Makefile.inc
+++ b/lib/libc/string/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.28 2012/01/17 02:48:01 guenther Exp $
+# $OpenBSD: Makefile.inc,v 1.29 2012/08/02 13:38:38 okan Exp $
# string sources
.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/string ${LIBCSRCDIR}/string
@@ -120,26 +120,6 @@ strrchr.so: rindex.c
-o ${.TARGET}
.endif
-# build .ln files for memmove, memcpy, strchr and strrchr always from
-# bcopy, index, and rindex
-LOBJS+= memmove.ln memcpy.ln strchr.ln strrchr.ln
-
-memmove.ln: bcopy.c
- lint ${LINTFLAGS} -DMEMMOVE ${CFLAGS:M-[IDU]*} -i -o ${.TARGET} \
- ${LIBCSRCDIR}/string/bcopy.c
-
-memcpy.ln: bcopy.c
- lint ${LINTFLAGS} -DMEMCOPY ${CFLAGS:M-[IDU]*} -i -o ${.TARGET} \
- ${LIBCSRCDIR}/string/bcopy.c
-
-strchr.ln: index.c
- lint ${LINTFLAGS} -DSTRCHR ${CFLAGS:M-[IDU]*} -i -o ${.TARGET} \
- ${LIBCSRCDIR}/string/index.c
-
-strrchr.ln: rindex.c
- lint ${LINTFLAGS} -DSTRRCHR ${CFLAGS:M-[IDU]*} -i -o ${.TARGET} \
- ${LIBCSRCDIR}/string/rindex.c
-
MAN+= bm.3 bcmp.3 bcopy.3 bstring.3 bzero.3 ffs.3 memccpy.3 memchr.3 \
memcmp.3 memcpy.3 memmove.3 memset.3 stpcpy.3 strcasecmp.3 strcat.3 \
strchr.3 strcmp.3 strcoll.3 strcpy.3 strcspn.3 strerror.3 \
diff --git a/lib/libcompat/Makefile b/lib/libcompat/Makefile
index 78f825dbff5..2c8b1e4f9de 100644
--- a/lib/libcompat/Makefile
+++ b/lib/libcompat/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.13 2009/10/28 00:04:26 deraadt Exp $
+# $OpenBSD: Makefile,v 1.14 2012/08/02 13:38:38 okan Exp $
# $NetBSD: Makefile,v 1.15 1995/09/07 07:17:53 jtc Exp $
LIB= compat
-WANTLINT=
AINC= -I${.CURDIR}/../libc/arch/${MACHINE_ARCH}
.if defined(DESTDIR)
AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile
index f63e461d4f3..934e5f9f0c3 100644
--- a/lib/libcurses/Makefile
+++ b/lib/libcurses/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.61 2011/06/23 22:46:12 schwarze Exp $
+# $OpenBSD: Makefile,v 1.62 2012/08/02 13:38:38 okan Exp $
# Uncomment this to enable tracing in libcurses
#CURSESTRACE=-DTRACE
@@ -14,7 +14,6 @@ AWK?= /usr/bin/awk
${.CURDIR}/widechar
LIB= curses
-WANTLINT=
SRCS= codes.c comp_captab.c expanded.c fallback.c lib_gen.c lib_keyname.c \
names.c unctrl.c
# base
diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile
index 3063198e46e..e594b5b9a9b 100644
--- a/lib/libedit/Makefile
+++ b/lib/libedit/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.11 2011/07/07 16:15:47 nicm Exp $
+# $OpenBSD: Makefile,v 1.12 2012/08/02 13:38:38 okan Exp $
# $NetBSD: Makefile,v 1.41 2010/02/03 15:34:43 roy Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
LIB= edit
-WANTLINT=
USE_SHLIBDIR= yes
WIDECHAR= yes
diff --git a/lib/libevent/Makefile b/lib/libevent/Makefile
index e9c0241b029..7e2ce6acd4b 100644
--- a/lib/libevent/Makefile
+++ b/lib/libevent/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.30 2010/04/21 21:02:46 nicm Exp $
+# $OpenBSD: Makefile,v 1.31 2012/08/02 13:38:38 okan Exp $
LIB= event
-WANTLINT=
SRCS= buffer.c evbuffer.c event.c event_tagging.c evutil.c kqueue.c \
log.c poll.c select.c signal.c
HDRS= event.h evutil.h
diff --git a/lib/libexpat/Makefile b/lib/libexpat/Makefile
index 221e0d1a58b..352e3f0fca7 100644
--- a/lib/libexpat/Makefile
+++ b/lib/libexpat/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.8 2012/07/07 13:35:07 jasper Exp $
+# $OpenBSD: Makefile,v 1.9 2012/08/02 13:38:38 okan Exp $
.PATH: ${.CURDIR}/lib
LIB= expat
-WANTLINT=
SRCS= xmlparse.c xmltok.c xmlrole.c
CFLAGS+=-I${.CURDIR} -DHAVE_EXPAT_CONFIG_H
diff --git a/lib/libform/Makefile b/lib/libform/Makefile
index 40ef29860b0..86fa8866f29 100644
--- a/lib/libform/Makefile
+++ b/lib/libform/Makefile
@@ -1,5 +1,4 @@
LIB= form
-WANTLINT=
SRCS= fld_arg.c fld_attr.c fld_current.c fld_def.c fld_dup.c fld_ftchoice.c \
fld_ftlink.c fld_info.c fld_just.c fld_link.c fld_max.c fld_move.c \
fld_newftyp.c fld_opts.c fld_pad.c fld_page.c fld_stat.c fld_type.c \
diff --git a/lib/libgssapi/Makefile b/lib/libgssapi/Makefile
index 63c0b944f5c..289a14f8b6a 100644
--- a/lib/libgssapi/Makefile
+++ b/lib/libgssapi/Makefile
@@ -1,10 +1,9 @@
-# $OpenBSD: Makefile,v 1.10 2006/04/29 12:35:56 biorn Exp $
+# $OpenBSD: Makefile,v 1.11 2012/08/02 13:38:38 okan Exp $
KRB5DIR = ${.CURDIR}/../../kerberosV
.include <${.CURDIR}/../libkrb5/Makefile.common.inc>
LIB= gssapi
-WANTLINT=
DIR_GSSAPI= ${KRB5SRC}/lib/gssapi
GENDIR= ${.CURDIR}/generated
diff --git a/lib/libkadm5clnt/Makefile b/lib/libkadm5clnt/Makefile
index 237f77c820c..e69755cef7e 100644
--- a/lib/libkadm5clnt/Makefile
+++ b/lib/libkadm5clnt/Makefile
@@ -1,10 +1,9 @@
-# $OpenBSD: Makefile,v 1.3 2006/04/14 08:24:42 biorn Exp $
+# $OpenBSD: Makefile,v 1.4 2012/08/02 13:38:38 okan Exp $
KRB5DIR = ${.CURDIR}/../../kerberosV
.include <${.CURDIR}/../libkrb5/Makefile.common.inc>
LIB= kadm5clnt
-WANTLINT=
INCLUDE_FILES= ${KRB5SRC}/lib/kadm5/{admin.h,private.h} kadm5_err.h
diff --git a/lib/libkadm5srv/Makefile b/lib/libkadm5srv/Makefile
index bd40f26c3c6..7c7cf2e2439 100644
--- a/lib/libkadm5srv/Makefile
+++ b/lib/libkadm5srv/Makefile
@@ -1,10 +1,9 @@
-# $OpenBSD: Makefile,v 1.6 2006/04/14 08:24:42 biorn Exp $
+# $OpenBSD: Makefile,v 1.7 2012/08/02 13:38:38 okan Exp $
KRB5DIR = ${.CURDIR}/../../kerberosV
.include <${.CURDIR}/../libkrb5/Makefile.common.inc>
LIB= kadm5srv
-WANTLINT=
DIR_KADM5SRV= ${KRB5SRC}/lib/kadm5
HDR_KADM5SRV= admin.h kadm5-private.h kadm5-protos.h private.h
diff --git a/lib/libkeynote/Makefile b/lib/libkeynote/Makefile
index 84c5b19eae6..f9b467b07d9 100644
--- a/lib/libkeynote/Makefile
+++ b/lib/libkeynote/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.17 2012/07/11 21:30:07 espie Exp $
+# $OpenBSD: Makefile,v 1.18 2012/08/02 13:38:38 okan Exp $
LIB= keynote
-WANTLINT=
MAN= keynote.3 keynote.4 keynote.5
MLINKS= keynote.3 kn_init.3 keynote.3 kn_add_assertion.3 \
keynote.3 kn_remove_assertion.3 keynote.3 kn_add_action.3 \
diff --git a/lib/libkrb5/Makefile b/lib/libkrb5/Makefile
index 439e4d420f3..16deae40bd8 100644
--- a/lib/libkrb5/Makefile
+++ b/lib/libkrb5/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.16 2005/11/24 20:49:18 deraadt Exp $
+# $OpenBSD: Makefile,v 1.17 2012/08/02 13:38:38 okan Exp $
.include <bsd.own.mk>
@@ -7,7 +7,6 @@ GENDIR= ${.CURDIR}/generated
.include "Makefile.common.inc"
LIB = krb5
-WANTLINT=
.PATH: ${KRB5SRC}/lib
.PATH: ${GENDIR}
diff --git a/lib/libkvm/Makefile b/lib/libkvm/Makefile
index c56049c3f1d..7a4fd78d2fa 100644
--- a/lib/libkvm/Makefile
+++ b/lib/libkvm/Makefile
@@ -1,9 +1,8 @@
-# $OpenBSD: Makefile,v 1.15 2012/01/07 05:38:12 guenther Exp $
+# $OpenBSD: Makefile,v 1.16 2012/08/02 13:38:38 okan Exp $
# $NetBSD: Makefile,v 1.11 1996/03/18 22:33:07 thorpej Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
LIB= kvm
-WANTLINT=
# Try most specific name first.
.if exists(kvm_${MACHINE}.c)
diff --git a/lib/libl/Makefile b/lib/libl/Makefile
index 0bbb728e9af..1f2a4f5ac36 100644
--- a/lib/libl/Makefile
+++ b/lib/libl/Makefile
@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.5 1995/02/25 09:02:37 cgd Exp $
-# $OpenBSD: Makefile,v 1.4 2005/11/24 20:49:18 deraadt Exp $
+# $OpenBSD: Makefile,v 1.5 2012/08/02 13:38:38 okan Exp $
LIB= l
-WANTLINT=
SRCS= libmain.c libyywrap.c
NOPIC=
diff --git a/lib/libm/Makefile b/lib/libm/Makefile
index c4e4f78701e..5a10dc69325 100644
--- a/lib/libm/Makefile
+++ b/lib/libm/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.98 2011/09/22 04:56:09 schwarze Exp $
+# $OpenBSD: Makefile,v 1.99 2012/08/02 13:38:39 okan Exp $
# $NetBSD: Makefile,v 1.28 1995/11/20 22:06:19 jtc Exp $
#
# @(#)Makefile 5.1beta 93/09/24
@@ -90,7 +90,6 @@ ARCH_SRCS = n_atan2.S n_cbrt.S n_hypot.S n_sincos.S n_support.S n_tan.S
.PATH: ${.CURDIR}/noieee_src
LIB= m
-WANTLINT=
COMMON_SRCS = b_exp__D.c b_log__D.c b_tgamma.c \
e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \
e_atan2.c e_atan2f.c e_atanh.c e_atanhf.c e_cosh.c e_coshf.c e_exp.c \
diff --git a/lib/libmenu/Makefile b/lib/libmenu/Makefile
index 22deff91f5a..bb002c9a9a5 100644
--- a/lib/libmenu/Makefile
+++ b/lib/libmenu/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.14 2011/06/23 22:46:12 schwarze Exp $
+# $OpenBSD: Makefile,v 1.15 2012/08/02 13:38:39 okan Exp $
LIB= menu
-WANTLINT=
SRCS= m_attribs.c m_cursor.c m_driver.c m_format.c \
m_global.c m_hook.c m_item_cur.c m_item_nam.c m_item_new.c \
m_item_opt.c m_item_top.c m_item_use.c m_item_val.c m_item_vis.c \
diff --git a/lib/libocurses/Makefile b/lib/libocurses/Makefile
index f2cf4da9a61..10dd6b0cbb0 100644
--- a/lib/libocurses/Makefile
+++ b/lib/libocurses/Makefile
@@ -1,10 +1,9 @@
-# $OpenBSD: Makefile,v 1.10 2010/01/04 17:50:38 deraadt Exp $
+# $OpenBSD: Makefile,v 1.11 2012/08/02 13:38:39 okan Exp $
CFLAGS+=#-DTFILE=\"/dev/ttyp0\"
CFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR}
CFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
LIB= ocurses
-WANTLINT=
SRCS= addbytes.c addch.c addnstr.c box.c clear.c clrtobot.c clrtoeol.c \
cr_put.c ctrace.c cur_hash.c curses.c delch.c deleteln.c delwin.c \
erase.c fullname.c getch.c getstr.c id_subwins.c idlok.c initscr.c \
diff --git a/lib/libossaudio/Makefile b/lib/libossaudio/Makefile
index 0cf69c48e79..e76cda5db99 100644
--- a/lib/libossaudio/Makefile
+++ b/lib/libossaudio/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.3 2005/11/24 20:49:19 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 2012/08/02 13:38:39 okan Exp $
# $NetBSD: Makefile,v 1.5 1998/04/13 14:18:45 lukem Exp $
LIB= ossaudio
-WANTLINT=
MAN= ossaudio.3
SRCS= ossaudio.c
diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile
index 964c15002c3..745b06df81d 100644
--- a/lib/libpanel/Makefile
+++ b/lib/libpanel/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.9 2010/09/06 17:26:17 nicm Exp $
+# $OpenBSD: Makefile,v 1.10 2012/08/02 13:38:39 okan Exp $
LIB= panel
-WANTLINT=
SRCS= p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c p_hide.c p_move.c \
p_new.c p_replace.c p_show.c p_top.c p_update.c p_user.c p_win.c panel.c
HDRS= panel.h
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile
index c6ec3de88e2..a31a05f6bd6 100644
--- a/lib/libpcap/Makefile
+++ b/lib/libpcap/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.22 2012/07/16 08:55:48 giovanni Exp $
+# $OpenBSD: Makefile,v 1.23 2012/08/02 13:38:39 okan Exp $
# $NetBSD: Makefile,v 1.3 1996/05/10 21:54:24 cgd Exp $
LIB= pcap
-WANTLINT=
MAN= pcap.3 pcap-filter.3
MLINKS= pcap.3 pcap_open_live.3 pcap.3 pcap_open_offline.3 \
pcap.3 pcap_dump_open.3 pcap.3 pcap_lookupdev.3 pcap.3 \
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile
index d5b4df08ff9..438a9c6be28 100644
--- a/lib/librpcsvc/Makefile
+++ b/lib/librpcsvc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2005/11/24 20:49:20 deraadt Exp $
+# $OpenBSD: Makefile,v 1.10 2012/08/02 13:38:39 okan Exp $
RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x \
@@ -9,7 +9,6 @@ HDRS= ${RPCSRCS:R:S/$/.h/g}
CLEANFILES+= ${SRCS} ${HDRS}
LIB= rpcsvc
-WANTLINT=
NOMAN=
all: ${HDRS}
diff --git a/lib/librthread/Makefile b/lib/librthread/Makefile
index 3a7e8aa2484..aa9be7bab36 100644
--- a/lib/librthread/Makefile
+++ b/lib/librthread/Makefile
@@ -1,11 +1,9 @@
-# $OpenBSD: Makefile,v 1.30 2012/05/03 09:07:17 pirofti Exp $
+# $OpenBSD: Makefile,v 1.31 2012/08/02 13:38:39 okan Exp $
# For ``COMPILER_VERSION''
.include <bsd.own.mk>
LIB=pthread
-WANTLINT=
-LINTFLAGS=-z
LIBCSRCDIR= ${.CURDIR}/../libc
CFLAGS+=-Wall -g -Werror -Wshadow
diff --git a/lib/libskey/Makefile b/lib/libskey/Makefile
index 1049a652fe5..24e6e314b27 100644
--- a/lib/libskey/Makefile
+++ b/lib/libskey/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.10 2005/11/24 20:49:21 deraadt Exp $
+# $OpenBSD: Makefile,v 1.11 2012/08/02 13:38:39 okan Exp $
LIB= skey
-WANTLINT=
SRCS= skeylogin.c skeysubr.c put.c
HDRS= skey.h
MAN+= skey.3 skey.5
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile
index 38fc8620ca0..c15f623d570 100644
--- a/lib/libssl/crypto/Makefile
+++ b/lib/libssl/crypto/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.60 2011/07/08 21:30:10 mpf Exp $
+# $OpenBSD: Makefile,v 1.61 2012/08/02 13:38:39 okan Exp $
LIB= crypto
-WANTLINT=
SSLEAYDIST= src
SSL_SRC= ${.CURDIR}/../${SSLEAYDIST}
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile
index 3215b33574c..0b8e5dfd538 100644
--- a/lib/libssl/ssl/Makefile
+++ b/lib/libssl/ssl/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.24 2012/07/11 11:02:48 sthen Exp $
+# $OpenBSD: Makefile,v 1.25 2012/08/02 13:38:39 okan Exp $
LIB= ssl
-WANTLINT=
SSLEAYDIST= src
diff --git a/lib/libusbhid/Makefile b/lib/libusbhid/Makefile
index 4ae744756c7..2ef7949294e 100644
--- a/lib/libusbhid/Makefile
+++ b/lib/libusbhid/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.6 2012/07/16 19:57:17 jasper Exp $
+# $OpenBSD: Makefile,v 1.7 2012/08/02 13:38:39 okan Exp $
# $NetBSD: Makefile,v 1.5 1999/07/23 09:44:38 mrg Exp $
LIB= usbhid
-WANTLINT=
MAN= usbhid.3
MLINKS= usbhid.3 hid_dispose_report_desc.3 \
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile
index b7b5f6dd505..2bc59392304 100644
--- a/lib/libutil/Makefile
+++ b/lib/libutil/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.33 2010/11/17 10:10:31 jsing Exp $
+# $OpenBSD: Makefile,v 1.34 2012/08/02 13:38:39 okan Exp $
# $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $
LIB= util
-WANTLINT=
HDRS= util.h imsg.h
SRCS= check_expire.c duid.c getmaxpartitions.c getrawpartition.c login.c \
diff --git a/lib/libwrap/Makefile b/lib/libwrap/Makefile
index c9bf6fc3464..448fbf1ad05 100644
--- a/lib/libwrap/Makefile
+++ b/lib/libwrap/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.6 2005/11/24 20:49:23 deraadt Exp $
+# $OpenBSD: Makefile,v 1.7 2012/08/02 13:38:39 okan Exp $
LIB= wrap
-WANTLINT=
SRCS= hosts_access.c options.c shell_cmd.c rfc931.c eval.c \
hosts_ctl.c refuse.c percent_x.c clean_exit.c \
fix_options.c socket.c update.c misc.c \
diff --git a/lib/liby/Makefile b/lib/liby/Makefile
index 3a99b0bc4b3..ae8833f388c 100644
--- a/lib/liby/Makefile
+++ b/lib/liby/Makefile
@@ -1,8 +1,7 @@
-# $OpenBSD: Makefile,v 1.3 2005/11/24 20:49:23 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 2012/08/02 13:38:39 okan Exp $
LIB= y
SRCS= main.c yyerror.c
NOPIC= nopic
-WANTLINT=
.include <bsd.lib.mk>
diff --git a/lib/libz/Makefile b/lib/libz/Makefile
index b55d868abab..c5eca37187d 100644
--- a/lib/libz/Makefile
+++ b/lib/libz/Makefile
@@ -1,7 +1,6 @@
-# $OpenBSD: Makefile,v 1.16 2011/05/26 13:52:55 jasper Exp $
+# $OpenBSD: Makefile,v 1.17 2012/08/02 13:38:39 okan Exp $
LIB= z
-WANTLINT=
HDRS= zconf.h zlib.h
SRCS= adler32.c compress.c crc32.c deflate.c gzio.c infback.c \
inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c