Makefile revision b3700b074e637f8c6991b70754c88a2cfffb246b
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# CDDL HEADER START
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# The contents of this file are subject to the terms of the
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# Common Development and Distribution License (the "License").
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# You may not use this file except in compliance with the License.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# or http://www.opensolaris.org/os/licensing.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# See the License for the specific language governing permissions
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# and limitations under the License.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# When distributing Covered Code, include this CDDL HEADER in each
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# If applicable, add the following below this CDDL HEADER, with the
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# fields enclosed by brackets "[]" replaced with your own identifying
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# information: Portions Copyright [yyyy] [name of copyright owner]
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# CDDL HEADER END
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# Use is subject to license terms.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd# Copyright 2014 Nexenta Systems, Inc. All rights reserved.
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd#
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndinclude ../Makefile.lib
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndSUBDIRS = $(MACH) $(BUILD64) $(MACH64)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndINSTALLED_HDRS = \
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd com_err.h krb5.h locate_plugin.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndCOMERRH = $(SRC)/lib/gss_mechs/mech_krb5/include/com_err.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndLOCPLUGH = $(SRC)/lib/gss_mechs/mech_krb5/include/locate_plugin.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndKRB5H = $(SRC)/uts/common/gssapi/mechs/krb5/include/krb5.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndKRB5INCDIR= $(ROOT)/usr/include/kerberosv5
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndCOMERRHINST = $(KRB5INCDIR)/com_err.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndLOCPLUGHINST = $(KRB5INCDIR)/locate_plugin.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndKRB5HINST = $(KRB5INCDIR)/krb5.h
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndKRB5HDRS = $(INSTALLED_HDRS:%=$(KRB5INCDIR)/%)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndall := TARGET= all
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndclean := TARGET= clean
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndclobber := TARGET= clobber
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndinstall := TARGET= install
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd.KEEP_STATE:
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndall clean clobber install: $(SUBDIRS)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndlint check:
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd$(SUBDIRS): FRC
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd @cd $@; pwd; $(MAKE) $(TARGET)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndinstall_h: $(KRB5INCDIR) $(KRB5HDRS)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd$(COMERRHINST): $(COMERRH)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd install -s -m 644 -f $(KRB5INCDIR) $(COMERRH)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd$(KRB5HINST): $(KRB5H)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd install -s -m 644 -f $(KRB5INCDIR) $(KRB5H)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd$(LOCPLUGHINST): $(LOCPLUGH)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd install -s -m 644 -f $(KRB5INCDIR) $(LOCPLUGH)
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd
d78d735dbf7c5ce5ae545eecd8ee2c052224db77ndFRC:
d78d735dbf7c5ce5ae545eecd8ee2c052224db77nd