mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
Install (optional) libutil.h with prototypes for the functions and document this in the man page. minor cleanups to the various routines, include the prototype file, declare return codes etc.
14 lines
341 B
Makefile
14 lines
341 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
LIB= util
|
|
SHLIB_MAJOR= 2
|
|
SHLIB_MINOR= 1
|
|
CFLAGS+=-DLIBC_SCCS -I${.CURDIR} -I/sys
|
|
SRCS= login.c login_tty.c logout.c logwtmp.c pty.c setproctitle.c
|
|
MAN3+= setproctitle.3
|
|
|
|
beforeinstall:
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/libutil.h \
|
|
${DESTDIR}/usr/include
|
|
|
|
.include <bsd.lib.mk>
|