7795b4110f
- getmaxpartitions: get the value of MAXPARTITIONS for the currently running system - getrawpartition: get the value of RAW_PART for the currently running system These functions are necessary since the value of MAXPARTITIONS might be different across platforms which are binary compatible (e.g. amiga and sun3).
25 lines
645 B
Makefile
25 lines
645 B
Makefile
# $NetBSD: Makefile,v 1.8 1996/05/16 07:03:28 thorpej Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
LIB= util
|
|
CFLAGS+=-DLIBC_SCCS
|
|
SRCS= getmaxpartitions.c getrawpartition.c login.c login_tty.c logout.c \
|
|
logwtmp.c passwd.c pty.c
|
|
|
|
MAN= getmaxpartitions.3 getrawpartition.3 login.3 openpty.3 pw_init.3 \
|
|
pw_lock.3
|
|
|
|
MLINKS+=login.3 logout.3
|
|
MLINKS+=login.3 logwtmp.3
|
|
MLINKS+=openpty.3 login_tty.3
|
|
MLINKS+=openpty.3 forkpty.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
|
|
|
|
.include <bsd.lib.mk>
|