Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# CDDL HEADER START
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson# The contents of this file are subject to the terms of the
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Common Development and Distribution License, Version 1.0 only
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# (the "License"). You may not use this file except in compliance
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson# with the License.
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson#
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson# or http://www.opensolaris.org/os/licensing.
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson# See the License for the specific language governing permissions
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# and limitations under the License.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# When distributing Covered Code, include this CDDL HEADER in each
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# If applicable, add the following below this CDDL HEADER, with the
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson#
f5d30e2864e048a42c4dc1134993ae7efdb5d6c3Mark Andrews# CDDL HEADER END
c6d4f781529d2f28693546b25b2967d44ec89e60Mark Andrews#
9c49c394b4218cc9c743a372a8fcfb787f5ea8caAndreas Gustafsson#
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#pragma ident "%Z%%M% %I% %E% SMI"
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# Copyright (c) 1997 by Sun Microsystems, Inc.
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# All rights reserved.
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein#
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austeininclude ../Makefile.com
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinDATAFILES += depend
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinACTION_SUNWgss=grep SUNWgss depend > /dev/null || \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein ( chmod 666 depend; \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein echo "P SUNWgss gss" >> depend; \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein chmod 444 depend );
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob AusteinACTION_SUNWgssc=grep SUNWgssc depend > /dev/null || \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein ( chmod 666 depend; \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein echo "P SUNWgssc gssapi configuration" >> depend; \
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein chmod 444 depend );
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein.KEEP_STATE:
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austeinall: $(FILES) action
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
f5d30e2864e048a42c4dc1134993ae7efdb5d6c3Mark Andrewsinstall: all pkg
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein# action is a pseudotarget denoting completed work on the depend file
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austeinaction: depend
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein $(ACTION_SUNWgss)
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein $(ACTION_SUNWgssc)
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein touch $@
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austein
268a4475065fe6a8cd7cc707820982cf5e98f430Rob Austeininclude ../Makefile.targ
c6d4f781529d2f28693546b25b2967d44ec89e60Mark Andrews