Makefile revision 1.1
11.1Schristos# Copyright 1998 Juniper Networks, Inc.
21.1Schristos# All rights reserved.
31.1Schristos# Copyright (c) 2002 Networks Associates Technology, Inc.
41.1Schristos# All rights reserved.
51.1Schristos#
61.1Schristos# Portions of this software was developed for the FreeBSD Project by
71.1Schristos# ThinkSec AS and NAI Labs, the Security Research Division of Network
81.1Schristos# Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
91.1Schristos# ("CBOSS"), as part of the DARPA CHATS research program.
101.1Schristos#
111.1Schristos# Redistribution and use in source and binary forms, with or without
121.1Schristos# modification, are permitted provided that the following conditions
131.1Schristos# are met:
141.1Schristos# 1. Redistributions of source code must retain the above copyright
151.1Schristos#    notice, this list of conditions and the following disclaimer.
161.1Schristos# 2. Redistributions in binary form must reproduce the above copyright
171.1Schristos#    notice, this list of conditions and the following disclaimer in the
181.1Schristos#    documentation and/or other materials provided with the distribution.
191.1Schristos# 3. The name of the author may not be used to endorse or promote
201.1Schristos#    products derived from this software without specific prior written
211.1Schristos#    permission.
221.1Schristos#
231.1Schristos# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
241.1Schristos# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
251.1Schristos# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
261.1Schristos# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
271.1Schristos# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
281.1Schristos# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
291.1Schristos# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
301.1Schristos# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
311.1Schristos# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
321.1Schristos# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
331.1Schristos# SUCH DAMAGE.
341.1Schristos#
351.1Schristos# $FreeBSD: src/lib/libpam/modules/pam_unix/Makefile,v 1.19 2004/11/13 20:40:29 bz Exp $
361.1Schristos
371.1SchristosLIB=	pam_unix
381.1SchristosSRCS=	pam_unix.c
391.1SchristosMAN=	pam_unix.8
401.1Schristos
411.1SchristosDPADD= ${LIBUTIL} ${LIBCRYPT}
421.1SchristosLDADD= -lutil -lcrypt
431.1Schristos
441.1Schristos.if !defined(NO_NIS)
451.1SchristosCFLAGS+= -DYP
461.1SchristosDPADD+= ${LIBYPCLNT}
471.1SchristosLDADD+= -lypclnt
481.1Schristos.endif
491.1Schristos
501.1Schristos.include <bsd.lib.mk>
51