mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
3750ccefb8
It was disabled by default in fe52b7f60e
. We planned to (but did not)
remove the option before FreeBSD 14. Remove it now, for FreeBSD 15.
Relnotes: Yes
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D31558
33 lines
809 B
Makefile
33 lines
809 B
Makefile
SHLIBDIR?=/lib
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= ulog
|
|
SHLIB_MAJOR= 0
|
|
INCS= ulog.h utempter.h
|
|
SRCS= ulog.h ulog_login.c ulog_login_pseudo.c utempter.c
|
|
|
|
MAN= ulog_login.3 utempter_add_record.3
|
|
MLINKS+=ulog_login.3 ulog_login_pseudo.3 \
|
|
ulog_login.3 ulog_logout.3 \
|
|
ulog_login.3 ulog_logout_pseudo.3 \
|
|
utempter_add_record.3 utempter_remove_added_record.3 \
|
|
utempter_add_record.3 utempter_remove_record.3 \
|
|
utempter_add_record.3 addToUtmp.3 \
|
|
utempter_remove_added_record.3 removeFromUtmp.3 \
|
|
utempter_remove_record.3 removeLineFromUtmp.3
|
|
|
|
LIBADD= md
|
|
|
|
VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
|
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
|
|
|
.if ${MK_INSTALLLIB} != "no"
|
|
SYMLINKS+=libulog.a ${LIBDIR}/libutempter.a
|
|
.endif
|
|
.if !defined(NO_PIC)
|
|
SYMLINKS+=libulog.so ${LIBDIR}/libutempter.so
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|