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