Makefile revision 233294
1193323Sed# Copyright 2001 FreeBSD, Inc.
2193323Sed# All rights reserved.
3193323Sed#
4193323Sed# Redistribution and use in source and binary forms, with or without
5193323Sed# modification, are permitted provided that the following conditions
6193323Sed# are met:
7193323Sed# 1. Redistributions of source code must retain the above copyright
8193323Sed#    notice, this list of conditions and the following disclaimer.
9193323Sed# 2. Redistributions in binary form must reproduce the above copyright
10193323Sed#    notice, this list of conditions and the following disclaimer in the
11193323Sed#    documentation and/or other materials provided with the distribution.
12193323Sed#
13193323Sed# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14193323Sed# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15193323Sed# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16193323Sed# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17193323Sed# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18193323Sed# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19193323Sed# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20193323Sed# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21193323Sed# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22193323Sed# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23193323Sed# SUCH DAMAGE.
24193323Sed#
25193323Sed# $FreeBSD: head/lib/libpam/modules/pam_krb5/Makefile 233294 2012-03-22 08:48:42Z stas $
26193323Sed
27193323SedLIB=	pam_krb5
28193323SedSRCS=	pam_krb5.c
29193323SedMAN=	pam_krb5.8
30193323Sed.if defined(_FREEFALL_CONFIG)
31193323SedCFLAGS+=-D_FREEFALL_CONFIG
32193323SedWARNS?=	3
33198090Srdivacky.endif
34218893Sdim
35193323SedNO_WERROR=	yes
36193323Sed
37193323SedDPADD=	${LIBKRB5} ${LIBHX509} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR} ${LIBCRYPT} ${LIBCRYPTO}
38193323SedLDADD=	-lkrb5 -lhx509 -lasn1 -lroken -lcom_err -lcrypt -lcrypto
39193323Sed
40198090Srdivacky.include <bsd.lib.mk>
41212904Sdim