Home | History | Annotate | Line # | Download | only in libutil
Makefile revision 1.57
      1  1.57  christos #	$NetBSD: Makefile,v 1.57 2008/12/16 22:34:40 christos Exp $
      2   1.7       jtc #	@(#)Makefile	8.1 (Berkeley) 6/4/93
      3   1.1       cgd 
      4  1.35     lukem USE_SHLIBDIR=	yes
      5  1.35     lukem 
      6  1.34     lukem .include <bsd.own.mk>
      7  1.34     lukem 
      8  1.57  christos .include "${NETBSDSRCDIR}/common/lib/libutil/Makefile.inc"
      9  1.57  christos 
     10  1.47  christos WARNS=3
     11   1.1       cgd LIB=	util
     12  1.20    kleink CPPFLAGS+=-DLIBC_SCCS
     13  1.53  christos SRCS=	efun.c getbootfile.c getlabelsector.c getmaxpartitions.c \
     14  1.43  jdolecek 	getmntopts.c getrawpartition.c \
     15  1.40     elric 	disklabel_dkcksum.c disklabel_scan.c \
     16  1.44       dsl 	if_media.c \
     17  1.39  jdolecek 	login.c loginx.c login_cap.c login_tty.c logout.c logoutx.c \
     18  1.53  christos 	logwtmp.c logwtmpx.c opendisk.c parsedate.y \
     19  1.48      elad 	passwd.c pw_scan.c pw_policy.c pidfile.c pidlock.c pty.c \
     20  1.56     lukem 	raise_default_signal.c \
     21  1.54  christos 	secure_path.c snprintb.c sockaddr_snprintf.c stat_flags.c \
     22  1.54  christos 	ttyaction.c ttymsg.c
     23   1.7       jtc 
     24  1.53  christos MAN=	efun.3 getbootfile.3 getlabelsector.3 getmaxpartitions.3 \
     25  1.43  jdolecek 	getmntopts.3 \
     26  1.43  jdolecek 	getrawpartition.3 \
     27  1.38       wiz 	login.3 login_cap.3 loginx.3 \
     28  1.40     elric 	disklabel_dkcksum.3 disklabel_scan.3 \
     29  1.53  christos 	opendisk.3 openpty.3 parsedate.3 pidfile.3 pidlock.3 \
     30  1.49      elad 	pw_getconf.3 pw_init.3 pw_lock.3 pw_policy.3 secure_path.3 \
     31  1.56     lukem 	raise_default_signal.3 \
     32  1.54  christos 	snprintb.3 sockaddr_snprintf.3 stat_flags.3 ttyaction.3 \
     33  1.36       abs 	ttymsg.3 util.3
     34  1.19   thorpej 
     35  1.34     lukem .PATH:	${NETBSDSRCDIR}/lib/libc/gen
     36   1.7       jtc 
     37  1.42       scw MLINKS+=getlabelsector.3 getlabeloffset.3
     38   1.7       jtc MLINKS+=login.3 logout.3
     39   1.7       jtc MLINKS+=login.3 logwtmp.3
     40  1.25       mjl MLINKS+=login_cap.3 login_getclass.3
     41  1.25       mjl MLINKS+=login_cap.3 login_getcapbool.3
     42  1.25       mjl MLINKS+=login_cap.3 login_getcapnum.3
     43  1.25       mjl MLINKS+=login_cap.3 login_getcapsize.3
     44  1.25       mjl MLINKS+=login_cap.3 login_getcapstr.3
     45  1.25       mjl MLINKS+=login_cap.3 login_getcaptime.3
     46  1.25       mjl MLINKS+=login_cap.3 login_close.3
     47  1.25       mjl MLINKS+=login_cap.3 setclasscontext.3
     48  1.25       mjl MLINKS+=login_cap.3 setusercontext.3
     49  1.38       wiz MLINKS+=loginx.3 logoutx.3 loginx.3 logwtmpx.3
     50   1.7       jtc MLINKS+=openpty.3 login_tty.3
     51   1.7       jtc MLINKS+=openpty.3 forkpty.3
     52   1.7       jtc MLINKS+=pw_init.3 pw_edit.3
     53   1.7       jtc MLINKS+=pw_init.3 pw_prompt.3
     54   1.7       jtc MLINKS+=pw_init.3 pw_copy.3
     55   1.7       jtc MLINKS+=pw_init.3 pw_scan.3
     56   1.7       jtc MLINKS+=pw_init.3 pw_error.3
     57   1.7       jtc MLINKS+=pw_lock.3 pw_mkdb.3
     58   1.7       jtc MLINKS+=pw_lock.3 pw_abort.3
     59  1.28      tron MLINKS+=pw_lock.3 pw_getprefix.3
     60  1.28      tron MLINKS+=pw_lock.3 pw_setprefix.3
     61  1.15       cjs MLINKS+=pidlock.3 ttylock.3
     62  1.15       cjs MLINKS+=pidlock.3 ttyunlock.3
     63  1.50  christos MLINKS+=efun.3 esetfunc.3
     64  1.50  christos MLINKS+=efun.3 easprintf.3
     65  1.50  christos MLINKS+=efun.3 estrlcpy.3
     66  1.50  christos MLINKS+=efun.3 estrlcat.3
     67  1.50  christos MLINKS+=efun.3 estrdup.3
     68  1.55     pooka MLINKS+=efun.3 estrndup.3
     69  1.50  christos MLINKS+=efun.3 emalloc.3
     70  1.51  christos MLINKS+=efun.3 ecalloc.3
     71  1.50  christos MLINKS+=efun.3 erealloc.3
     72  1.50  christos MLINKS+=efun.3 efopen.3
     73  1.50  christos MLINKS+=efun.3 evasprintf.3
     74  1.54  christos MLINKS+=stat_flags.3 string_to_flags.3
     75  1.54  christos MLINKS+=stat_flags.3 flags_to_string.3
     76   1.1       cgd 
     77   1.1       cgd .include <bsd.lib.mk>
     78