Makefile revision 41227
10Sstevel@tonic-gate# Copyright 1998 Juniper Networks, Inc.
20Sstevel@tonic-gate# All rights reserved.
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# Redistribution and use in source and binary forms, with or without
56812Sraf# modification, are permitted provided that the following conditions
66812Sraf# are met:
70Sstevel@tonic-gate# 1. Redistributions of source code must retain the above copyright
80Sstevel@tonic-gate#    notice, this list of conditions and the following disclaimer.
90Sstevel@tonic-gate# 2. Redistributions in binary form must reproduce the above copyright
100Sstevel@tonic-gate#    notice, this list of conditions and the following disclaimer in the
110Sstevel@tonic-gate#    documentation and/or other materials provided with the distribution.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
140Sstevel@tonic-gate# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
150Sstevel@tonic-gate# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
160Sstevel@tonic-gate# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
170Sstevel@tonic-gate# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
180Sstevel@tonic-gate# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
190Sstevel@tonic-gate# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
200Sstevel@tonic-gate# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
216812Sraf# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
220Sstevel@tonic-gate# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
236812Sraf# SUCH DAMAGE.
240Sstevel@tonic-gate#
250Sstevel@tonic-gate#	$FreeBSD: cvs2svn/branches/JUNIPER/lib/libpam/modules/pam_radius/Makefile 41227 1998-11-18 01:44:37Z jdp $
260Sstevel@tonic-gate
270Sstevel@tonic-gatePAMDIR=		${.CURDIR}/../../../../contrib/libpam
280Sstevel@tonic-gate
296812SrafPROG=		pam_radius.so
300Sstevel@tonic-gateSRCS=		pam_radius.c
310Sstevel@tonic-gateCFLAGS+=	-fpic
320Sstevel@tonic-gateCFLAGS+=	-Wall
330Sstevel@tonic-gateCFLAGS+=	-I${PAMDIR}/libpam/include
340Sstevel@tonic-gateCFLAGS+=	-I${.CURDIR}/../../libpam
350Sstevel@tonic-gateLDFLAGS+=	-shared
360Sstevel@tonic-gateLDFLAGS+=	-L../../libpam
370Sstevel@tonic-gateDPADD+=		${LIBRADIUS} ${LIBGCC_PIC}
380Sstevel@tonic-gateLDADD+=		-lpam -lradius -lgcc_pic
390Sstevel@tonic-gateNOMAN=		true
400Sstevel@tonic-gate
410Sstevel@tonic-gate.include <bsd.prog.mk>
420Sstevel@tonic-gate