Makefile revision fcf3ce441efd61da9bb2884968af01cb7c1452cc
6643N/A#
6643N/A# CDDL HEADER START
6643N/A#
6643N/A# The contents of this file are subject to the terms of the
6643N/A# Common Development and Distribution License (the "License").
6643N/A# You may not use this file except in compliance with the License.
6643N/A#
6643N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6643N/A# or http://www.opensolaris.org/os/licensing.
6643N/A# See the License for the specific language governing permissions
6643N/A# and limitations under the License.
6643N/A#
6643N/A# When distributing Covered Code, include this CDDL HEADER in each
6643N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6643N/A# If applicable, add the following below this CDDL HEADER, with the
6643N/A# fields enclosed by brackets "[]" replaced with your own identifying
6643N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6643N/A#
6643N/A# CDDL HEADER END
6643N/A#
6643N/A#
6643N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
6643N/A# Use is subject to license terms.
6643N/A#
6643N/A# cmd/mpathadm/Makefile
6643N/A
6643N/Ainclude ../Makefile.cmd
6643N/A
6643N/APROG= mpathadm
6643N/A
6643N/AOBJS= cmdparse.o mpathadm.o mpathadm_text.o
6643N/ASRCS= $(OBJS:%.o=%.c)
6643N/APOFILE= mpathadm_all.po
6643N/APOFILES=$(OBJS:%.o=%.po)
6643N/A
6643N/ALDLIBS += -lMPAPI -ldevid
6643N/A
6643N/ALINTFLAGS += -xerroff=E_BAD_FORMAT_STR2
6643N/A
6643N/A.KEEP_STATE:
6643N/A
6643N/Aall: $(PROG)
6643N/A
6643N/A$(PROG): $(OBJS)
6643N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
6643N/A $(POST_PROCESS)
6643N/A
6643N/Ainstall: all $(ROOTUSRSBINPROG)
6643N/A
6643N/A
6643N/Aclean:
6643N/A $(RM) $(OBJS) $(POFILES) $(POFILE)
6643N/A
6643N/A$(POFILE): $(POFILES)
6643N/A $(RM) $@
6643N/A $(CAT) $(POFILES) > $@
6643N/A
6643N/Alint: lint_SRCS
6643N/A
include ../Makefile.targ