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