Makefile revision 1cc553493b17fa6a6770261bbfeb258f354ebf48
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
#ident "%Z%%M% %I% %E% SMI"
#
# Copyright 2006 Sun Microsystems, Inc.
# All rights reserved. Use is subject to license terms.
#
# uts/common/rpcsvc/Makefile
# This makefile installs system header files that go into
# /usr/include/rpcsvc.
#
# include global definitions
include ../../../Makefile.master
# Protocol descriptions. Alas, the NFS protocol cannot be expressed
# completely via rpcgen. The NLM description should go here some day.
# Also, the v3 headers have been hacked so that they no longer
# quite reflect what goes over the wire.
RPCGEN_SRC= autofs_prot.x sm_inter.x nsm_addr.x
DERIVED_HDRS= $(RPCGEN_SRC:%.x=%.h)
ALLHDRS= $(RPCGEN_SRC) $(DERIVED_HDRS)
ROOTDIRS= $(ROOT)/usr/include/rpcsvc
ROOTHDRS= $(ALLHDRS:%=$(ROOTDIRS)/%)
$(ROOTDIRS)/%: %
$(INS.file)
.KEEP_STATE:
# all_h permits derived headers to be built here in the uts source area
# for the kernel to reference, without going so far as to install them.
#
all_h: $(DERIVED_HDRS)
install_h: all_h $(ROOTDIRS) $(ROOTHDRS)
clean:
$(RM) $(DERIVED_HDRS)
clobber: clean
# Don't check rpcgen-derived files.
check:
$(ROOTDIRS):
$(INS.dir)
%.h: %.x
$(RPCGEN) -C -h $< -o $@