1*3910Sdougm# 2*3910Sdougm# CDDL HEADER START 3*3910Sdougm# 4*3910Sdougm# The contents of this file are subject to the terms of the 5*3910Sdougm# Common Development and Distribution License (the "License"). 6*3910Sdougm# You may not use this file except in compliance with the License. 7*3910Sdougm# 8*3910Sdougm# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*3910Sdougm# or http://www.opensolaris.org/os/licensing. 10*3910Sdougm# See the License for the specific language governing permissions 11*3910Sdougm# and limitations under the License. 12*3910Sdougm# 13*3910Sdougm# When distributing Covered Code, include this CDDL HEADER in each 14*3910Sdougm# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*3910Sdougm# If applicable, add the following below this CDDL HEADER, with the 16*3910Sdougm# fields enclosed by brackets "[]" replaced with your own identifying 17*3910Sdougm# information: Portions Copyright [yyyy] [name of copyright owner] 18*3910Sdougm# 19*3910Sdougm# CDDL HEADER END 20*3910Sdougm# 21*3910Sdougm# 22*3910Sdougm# ident "%Z%%M% %I% %E% SMI" 23*3910Sdougm# 24*3910Sdougm# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 25*3910Sdougm# Use is subject to license terms. 26*3910Sdougm# 27*3910Sdougm 28*3910Sdougminclude ../../Makefile.lib 29*3910Sdougm 30*3910SdougmSUBDIRS = $(MACH) 31*3910Sdougm$(BUILD64)SUBDIRS += $(MACH64) 32*3910Sdougm 33*3910SdougmMSGFILES = libshare_nfs.c 34*3910SdougmPOFILE = libshare_nfs.po 35*3910Sdougm 36*3910Sdougmall := TARGET= all 37*3910Sdougmclean := TARGET= clean 38*3910Sdougmclobber := TARGET= clobber 39*3910Sdougminstall := TARGET= install 40*3910Sdougmlint := TARGET= lint 41*3910Sdougm 42*3910Sdougm.KEEP_STATE: 43*3910Sdougm 44*3910Sdougmall clean clobber install lint: $(SUBDIRS) 45*3910Sdougm 46*3910Sdougm$(POFILE): $(MSGFILES) 47*3910Sdougm $(BUILDPO.msgfiles) 48*3910Sdougm 49*3910Sdougm_msg: $(MSGDOMAINPOFILE) 50*3910Sdougm 51*3910Sdougm$(SUBDIRS): FRC 52*3910Sdougm @cd $@; pwd; $(MAKE) $(TARGET) 53*3910Sdougm 54*3910SdougmFRC: 55*3910Sdougm 56*3910Sdougminclude ../../Makefile.targ 57*3910Sdougminclude ../../../Makefile.msg.targ 58