Makefile revision c5c4113dfcabb1eed3d4bdf7609de5170027a794
6329N/A#
6329N/A# CDDL HEADER START
6329N/A#
6329N/A# The contents of this file are subject to the terms of the
6329N/A# Common Development and Distribution License (the "License").
6329N/A# You may not use this file except in compliance with the License.
6329N/A#
6329N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6329N/A# or http://www.opensolaris.org/os/licensing.
6329N/A# See the License for the specific language governing permissions
6329N/A# and limitations under the License.
6329N/A#
6329N/A# When distributing Covered Code, include this CDDL HEADER in each
6329N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6329N/A# If applicable, add the following below this CDDL HEADER, with the
6329N/A# fields enclosed by brackets "[]" replaced with your own identifying
6329N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6329N/A#
6329N/A# CDDL HEADER END
6329N/A#
6329N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
6329N/A# Use is subject to license terms.
6329N/A#
6329N/A#
6329N/A#pragma ident "%Z%%M% %I% %E% SMI"
6329N/A#
6329N/A# uts/common/idmap/Makefile
6329N/A#
6329N/A# include global definitions
6329N/Ainclude ../../../Makefile.master
6329N/A
6329N/AIDMAP_PROT_DIR= $(SRC)/head/rpcsvc
6329N/A
6329N/AIDMAP_PROT_X= $(IDMAP_PROT_DIR)/idmap_prot.x
6329N/ADERIVED_SRCS= idmap_xdr.c
6329N/ADERIVED_HDRS= $(IDMAP_PROT_DIR)/idmap_prot.h
6329N/ADERIVED_FILES= $(DERIVED_SRCS) $(DERIVED_HDRS)
6329N/AHDRS= kidmap_priv.h
6329N/ACHECKHDRS= $(HDRS:%.h=%.check)
6329N/A
6329N/A.KEEP_STATE:
6329N/A
6329N/A.PARALLEL: $(CHECKHDRS)
6329N/A
6329N/Ainstall_h: all_h
6329N/A
6329N/Aall_h: $(DERIVED_FILES)
6329N/A
6329N/A
6329N/Aidmap_xdr.c: $(IDMAP_PROT_X)
6329N/A $(RM) $@
6329N/A $(RPCGEN) -CMNc -o $@ $(IDMAP_PROT_X)
6329N/A
6329N/A$(IDMAP_PROT_DIR)/idmap_prot.h: $(IDMAP_PROT_X)
6329N/A $(RM) $@
6329N/A $(RPCGEN) -CMNh -o $@ $(IDMAP_PROT_X)
6329N/A
6329N/Acheck: $(CHECKHDRS)
6329N/A
6329N/Aclean:
6329N/A $(RM) $(DERIVED_FILES)
6329N/A