diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
commit | 22c99bcd0d1aacbc678f4a711ffe6a55178e6c28 (patch) | |
tree | fc5a38e208ec108f56afffc16f05c640e740cc20 /lib/libutil | |
parent | c18d4a3d864d24448fec6853ae70834f8dae3a40 (diff) |
for some time now mandoc has not required MLINKS to function
correctly - logically complete that now by removing MLINKS from base;
authors need only to ensure there is an entry in NAME for any function/
util being added. MLINKS will still work, and remain for perl to ease
upgrades;
ok nicm (curses) bcook (ssl)
ok schwarze, who provided a lot of feedback and assistance
ok tb natano jung
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/Makefile | 58 |
1 files changed, 1 insertions, 57 deletions
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 9a120e1033d..11bcfcdda3b 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.38 2014/06/02 18:52:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.39 2016/03/30 06:38:43 jmc Exp $ # $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $ LIB= util @@ -16,66 +16,10 @@ MAN= bcrypt_pbkdf.3 check_expire.3 getmaxpartitions.3 getrawpartition.3 \ fparseln.3 opendisk.3 login_fbtab.3 pidfile.3 fmt_scaled.3 imsg_init.3 \ pkcs5_pbkdf2.3 -MLINKS+=imsg_init.3 imsg_read.3 -MLINKS+=imsg_init.3 imsg_get.3 -MLINKS+=imsg_init.3 imsg_compose.3 -MLINKS+=imsg_init.3 imsg_composev.3 -MLINKS+=imsg_init.3 imsg_create.3 -MLINKS+=imsg_init.3 imsg_add.3 -MLINKS+=imsg_init.3 imsg_close.3 -MLINKS+=imsg_init.3 imsg_free.3 -MLINKS+=imsg_init.3 imsg_flush.3 -MLINKS+=imsg_init.3 imsg_clear.3 -MLINKS+=imsg_init.3 ibuf_open.3 -MLINKS+=imsg_init.3 ibuf_dynamic.3 -MLINKS+=imsg_init.3 ibuf_add.3 -MLINKS+=imsg_init.3 ibuf_reserve.3 -MLINKS+=imsg_init.3 ibuf_seek.3 -MLINKS+=imsg_init.3 ibuf_size.3 -MLINKS+=imsg_init.3 ibuf_left.3 -MLINKS+=imsg_init.3 ibuf_close.3 -MLINKS+=imsg_init.3 ibuf_write.3 -MLINKS+=imsg_init.3 ibuf_free.3 -MLINKS+=imsg_init.3 msgbuf_init.3 -MLINKS+=imsg_init.3 msgbuf_clear.3 -MLINKS+=imsg_init.3 msgbuf_write.3 -MLINKS+=imsg_init.3 msgbuf_drain.3 -MLINKS+=login.3 logout.3 -MLINKS+=login.3 logwtmp.3 -MLINKS+=check_expire.3 login_check_expire.3 -MLINKS+=openpty.3 login_tty.3 -MLINKS+=openpty.3 forkpty.3 -MLINKS+=pw_init.3 pw_setdir.3 -MLINKS+=pw_init.3 pw_file.3 -MLINKS+=pw_init.3 pw_edit.3 -MLINKS+=pw_init.3 pw_prompt.3 -MLINKS+=pw_init.3 pw_copy.3 -MLINKS+=pw_init.3 pw_scan.3 -MLINKS+=pw_init.3 pw_error.3 -MLINKS+=pw_lock.3 pw_mkdb.3 -MLINKS+=pw_lock.3 pw_abort.3 -MLINKS+=uucplock.3 uu_lock.3 -MLINKS+=uucplock.3 uu_unlock.3 -MLINKS+=uucplock.3 uu_lockerr.3 -MLINKS+=uucplock.3 uu_lock_txfr.3 -MLINKS+=fmt_scaled.3 scan_scaled.3 - SRCS+= ohash.c HDRS += ohash.h MAN += ohash_init.3 ohash_interval.3 -MLINKS += ohash_init.3 ohash_delete.3 \ - ohash_init.3 ohash_lookup_interval.3 \ - ohash_init.3 ohash_lookup_memory.3 \ - ohash_init.3 ohash_find.3 \ - ohash_init.3 ohash_remove.3 \ - ohash_init.3 ohash_insert.3 \ - ohash_init.3 ohash_first.3 \ - ohash_init.3 ohash_next.3 \ - ohash_init.3 ohash_entries.3 \ - ohash_interval.3 ohash_create_entry.3 \ - ohash_interval.3 ohash_qlookupi.3 \ - ohash_interval.3 ohash_qlookup.3 includes: @cd ${.CURDIR}; for i in $(HDRS); do \ |