xref: /titanic_41/usr/src/cmd/krb5/kadmin/gui/native/Makefile.com (revision bb25c06cca41ca78e5fb87fbb8e81d55beb18c95)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28LIBRARY=	libkadmin.a
29VERS=		.1
30
31CLASSES=	Kadmin
32OBJECTS=	$(CLASSES:%=%.o)
33
34include $(SRC)/lib/Makefile.lib
35#
36# Need this makefile to find the KRUNPATH and KMECHLIB definitions
37#
38include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
39
40ROOTLIBDIR=	$(ROOT)/usr/lib/krb5
41LIBS =		$(DYNLIB)
42
43CPPFLAGS += -I../ -I$(SRC)/lib/krb5 \
44	-I$(SRC)/lib/krb5/kadm5 \
45	-I$(SRC)/lib/gss_mechs/mech_krb5/include \
46	-I$(SRC)/lib/gss_mechs/mech_krb5/krb5/error_tables \
47	-I$(SRC)/uts/common/gssapi/mechs/krb5/include \
48	-I$(JAVA_ROOT)/include -I$(JAVA_ROOT)/include/solaris
49
50LDLIBS += $(KMECHLIB) -L$(ROOT)/$(KERBLIBDIR) -lkadm5clnt -lsocket -lc
51DYNFLAGS += $(KRUNPATH)
52
53#
54# This library is not directly linked against by any C applications
55# (only by Java code), so we do not build a lint library.
56#
57
58.KEEP_STATE:
59
60all:	$(LIBS)
61
62LINTFLAGS	= -mxus
63
64lint: lintcheck
65
66include $(SRC)/lib/Makefile.targ
67
68