1################################################################
2# Copyright (c) 2000 Carnegie Mellon University.  All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions
6# are met:
7#
8# 1. Redistributions of source code must retain the above copyright
9#    notice, this list of conditions and the following disclaimer. 
10#
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in
13#    the documentation and/or other materials provided with the
14#    distribution.
15#
16# 3. The name "Carnegie Mellon University" must not be used to
17#    endorse or promote products derived from this software without
18#    prior written permission. For permission or any other legal
19#    details, please contact  
20#      Office of Technology Transfer
21#      Carnegie Mellon University
22#      5000 Forbes Avenue
23#      Pittsburgh, PA  15213-3890
24#      (412) 268-4387, fax: (412) 268-7395
25#      tech-transfer@andrew.cmu.edu
26#
27# 4. Redistributions of any form whatsoever must retain the following
28#    acknowledgment:
29#    "This product includes software developed by Computing Services
30#     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
31#
32# CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
33# THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
34# AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
35# FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
36# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
37# AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
38# OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
39#
40################################################################
41
42javasasldir = $(prefix)/lib/java/classes/sasl/javax/security/auth/callback
43javahtmldir = $(prefix)/html/sasl
44
45javasasl_JAVA = PasswordCallback.java \
46	Callback.java \
47	RealmCallback.java \
48	CallbackHandler.java \
49	UnsupportedCallbackException.java \
50	NameCallback.java
51EXTRA_DIST = $(javasasl_JAVA)
52
53CLASSES = $(javasasl_JAVA:.java=.class)
54
55$(CLASSES): callback.stamp
56