1*54925bf6Swillf# 2*54925bf6Swillf# CDDL HEADER START 3*54925bf6Swillf# 4*54925bf6Swillf# The contents of this file are subject to the terms of the 5*54925bf6Swillf# Common Development and Distribution License (the "License"). 6*54925bf6Swillf# You may not use this file except in compliance with the License. 7*54925bf6Swillf# 8*54925bf6Swillf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*54925bf6Swillf# or http://www.opensolaris.org/os/licensing. 10*54925bf6Swillf# See the License for the specific language governing permissions 11*54925bf6Swillf# and limitations under the License. 12*54925bf6Swillf# 13*54925bf6Swillf# When distributing Covered Code, include this CDDL HEADER in each 14*54925bf6Swillf# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*54925bf6Swillf# If applicable, add the following below this CDDL HEADER, with the 16*54925bf6Swillf# fields enclosed by brackets "[]" replaced with your own identifying 17*54925bf6Swillf# information: Portions Copyright [yyyy] [name of copyright owner] 18*54925bf6Swillf# 19*54925bf6Swillf# CDDL HEADER END 20*54925bf6Swillf# 21*54925bf6Swillf# 22*54925bf6Swillf# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23*54925bf6Swillf# Use is subject to license terms. 24*54925bf6Swillf# 25*54925bf6Swillf# ident "%Z%%M% %I% %E% SMI" 26*54925bf6Swillf# 27*54925bf6Swillf 28*54925bf6Swillfinclude $(SRC)/lib/krb5/Makefile.lib 29*54925bf6Swillf 30*54925bf6Swillfinclude $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 31*54925bf6Swillf 32*54925bf6SwillfSUBDIRS= \ 33*54925bf6Swillf libdb2 \ 34*54925bf6Swillf $(MACH) 35*54925bf6Swillf 36*54925bf6Swillfall := TARGET= all 37*54925bf6Swillfclean := TARGET= clean 38*54925bf6Swillfclobber := TARGET= clobber 39*54925bf6Swillfinstall := TARGET= install 40*54925bf6Swillflint := TARGET= lint 41*54925bf6Swillf_msg := TARGET= _msg 42*54925bf6Swillf 43*54925bf6Swillf.KEEP_STATE: 44*54925bf6Swillf 45*54925bf6Swillfall clean clobber lint _msg: $(SUBDIRS) 46*54925bf6Swillf 47*54925bf6Swillf$(ROOTLIBDIR): 48*54925bf6Swillf $(INS.dir) 49*54925bf6Swillf 50*54925bf6Swillf$(ROOTLIBDIR)/%: % 51*54925bf6Swillf $(INS.file) 52*54925bf6Swillf 53*54925bf6Swillfinstall: $(ROOTLIBDIR) $(SUBDIRS) 54*54925bf6Swillf 55*54925bf6Swillf$(SUBDIRS): FRC 56*54925bf6Swillf @cd $@; pwd; $(MAKE) $(TARGET) 57*54925bf6Swillf 58*54925bf6SwillfFRC: 59