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 2008 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26LIBRARY= libkadmin.a 27VERS= .1 28 29CLASSES= Kadmin 30OBJECTS= $(CLASSES:%=%.o) 31 32include $(SRC)/lib/Makefile.lib 33# 34# Need this makefile to find the KRUNPATH, KERBRUNPATH and KMECHLIB definitions 35# 36include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 37 38ROOTLIBDIR= $(ROOT)/usr/lib/krb5 39LIBS = $(DYNLIB) 40 41CPPFLAGS += -I../ -I$(SRC)/lib/krb5 \ 42 -I$(SRC)/lib/krb5/kadm5 \ 43 -I$(SRC)/lib/gss_mechs/mech_krb5/include \ 44 -I$(SRC)/lib/gss_mechs/mech_krb5/krb5/error_tables \ 45 -I$(SRC)/uts/common/gssapi/mechs/krb5/include \ 46 -I$(JAVA_ROOT)/include -I$(JAVA_ROOT)/include/solaris 47 48CERRWARN += -_gcc=-Wno-parentheses 49CERRWARN += -_gcc=-Wno-unused-variable 50CERRWARN += -_gcc=-Wno-unused-function 51 52LDLIBS += $(KMECHLIB) -L$(ROOT)/$(KERBLIBDIR) -lkadm5clnt -lsocket -lc 53DYNFLAGS += $(KRUNPATH) $(KERBRUNPATH) 54 55# 56# This library is not directly linked against by any C applications 57# (only by Java code), so we do not build a lint library. 58# 59 60.KEEP_STATE: 61 62all: $(LIBS) 63 64LINTFLAGS = -mxus 65 66lint: lintcheck 67 68include $(SRC)/lib/Makefile.targ 69 70