Home | History | Annotate | Line # | Download | only in login
Makefile revision 1.15
      1  1.15   mycroft #	$NetBSD: Makefile,v 1.15 1997/10/12 12:39:17 mycroft Exp $
      2  1.10       jtc #	@(#)Makefile	8.1 (Berkeley) 7/19/93
      3   1.1       cgd 
      4  1.14  christos WARNS?= 1
      5   1.1       cgd PROG=	login
      6  1.10       jtc SRCS=	login.c
      7  1.14  christos DPADD+=	${LIBUTIL} ${LIBCRYPT}
      8  1.14  christos LDADD+=	-lutil -lcrypt
      9  1.11     lukem LDSTATIC= -static
     10  1.15   mycroft 
     11  1.15   mycroft .include <bsd.own.mk>
     12  1.14  christos 
     13  1.14  christos .if defined(SKEY)
     14  1.14  christos CPPFLAGS+= -DSKEY
     15  1.14  christos DPADD+= ${LIBSKEY}
     16  1.14  christos LDADD+=	-lskey
     17  1.14  christos .endif
     18   1.7       cgd 
     19   1.9    brezak .if defined(KERBEROS5)
     20  1.10       jtc SRCS+=	k5login.c
     21   1.9    brezak DPADD+=	${LIBKRB5} ${LIBCRYPTO}
     22  1.13   mycroft LDADD+=	-lkrb5 -lcrypto -lcom_err
     23  1.14  christos CPPFLAGS+= -DKERBEROS5
     24   1.9    brezak .elif defined(KERBEROS)
     25  1.10       jtc SRCS+=	klogin.c
     26   1.7       cgd DPADD+=	${LIBKRB} ${LIBDES}
     27   1.7       cgd LDADD+=	-lkrb -ldes
     28  1.14  christos CPPFLAGS+= -DKERBEROS
     29   1.7       cgd .endif
     30   1.4       cgd 
     31   1.1       cgd BINOWN=	root
     32   1.1       cgd BINMODE=4555
     33  1.10       jtc INSTALLFLAGS=-fschg
     34   1.1       cgd 
     35   1.1       cgd .include <bsd.prog.mk>
     36