Makefile revision b6805bf78d2bbbeeaea8909a05623587b42d58b3
791N/A#
791N/A# CDDL HEADER START
791N/A#
791N/A# The contents of this file are subject to the terms of the
943N/A# Common Development and Distribution License (the "License").
791N/A# You may not use this file except in compliance with the License.
791N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A#
919N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
919N/A#
791N/A
791N/A#
791N/A# cmd/fs.d/smbclnt/umount/Makefile
791N/A#
1033N/A
791N/AFSTYPE= smbfs
970N/ALIBPROG= umount
970N/AROOTFS_PROG= $(LIBPROG)
970N/A
970N/Ainclude ../../Makefile.fstype
970N/A
970N/ACOMMON= $(FSLIB)
970N/AOBJS= $(LIBPROG).o $(COMMON)
970N/ASRCS= $(LIBPROG).c $(FSLIBSRC)
970N/A
970N/A$(ROOTLIBFSTYPE)/umount := FILEMODE= 04555
1033N/A
970N/ACPPFLAGS += -I../.. -I../lib
970N/ACFLAGS += $(CCVERBOSE)
970N/A
970N/A#
1003N/A# Message catalog
970N/A#
791N/APOFILE= $(LIBPROG).po
1033N/Acatalog: $(POFILE)
791N/A
911N/A$(POFILE): $(SRCS)
1033N/A $(RM) $@
1033N/A $(COMPILE.cpp) $(SRCS) > $(POFILE).i
911N/A $(XGETTEXT) $(XGETFLAGS) $(POFILE).i
791N/A sed "/^domain/d" messages.po > $@
791N/A $(RM) messages.po $(POFILE).i
791N/A
791N/A$(LIBPROG): $(OBJS)
791N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
1033N/A $(POST_PROCESS)
791N/A
791N/Alint: lint_SRCS
791N/A
791N/Aclean:
791N/A $(RM) $(LIBPROG).o
791N/A