Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
1008N/A#
1008N/A# CDDL HEADER START
1008N/A#
1008N/A# The contents of this file are subject to the terms of the
1008N/A# Common Development and Distribution License, Version 1.0 only
1008N/A# (the "License"). You may not use this file except in compliance
1008N/A# with the License.
1008N/A#
1008N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1008N/A# or http://www.opensolaris.org/os/licensing.
1008N/A# See the License for the specific language governing permissions
1008N/A# and limitations under the License.
1008N/A#
1008N/A# When distributing Covered Code, include this CDDL HEADER in each
1008N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1008N/A# If applicable, add the following below this CDDL HEADER, with the
1008N/A# fields enclosed by brackets "[]" replaced with your own identifying
1008N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1008N/A#
1008N/A# CDDL HEADER END
1008N/A#
1008N/A#
1008N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
1008N/A# Use is subject to license terms.
1008N/A#
1008N/A# ident "%Z%%M% %I% %E% SMI"
1008N/A#
1008N/A
1008N/Ainclude $(SRC)/cmd/wbem/Makefile.wbem
1008N/A
1008N/AOBJECTS = Solaris_MPXIOGroup.o
1008N/A
1008N/ALINT_OBJS = $(OBJECTS:%.o=%.ln)
1008N/A
1008N/AGENERAL = $(ROOTWBEMINC) \
1008N/A $(SRC)/lib/libdiskmgt/common \
1008N/A $(SRC)/cmd/wbem/provider/c/include
1008N/A
1008N/ACPPFLAGS += -I. $(GENERAL:%=-I%) -D_REENTRANT -Dpic -D_TS_ERRNO
1008N/A
1008N/ACFLAGS += $(XREGSFLAG) $(C_PICFLAGS)
1008N/A
1008N/ALINTFLAGS += -um
1008N/ALINTLIBS = $(LDLIBS.cmd)
1008N/A
1008N/APOFILE = _mpxio.po
1008N/AMSGFILES = $(OBJECTS:%.o=%.i)
1008N/A
1008N/ACLOBBERFILES += $(POFILE)
1008N/A
1008N/A.KEEP_STATE:
1008N/A
1008N/Aall: $(OBJECTS)
1008N/A
1008N/Ainstall: all
1008N/A
1008N/Alint: $(LINT_OBJS)
1008N/A $(LINT.c) $(LINTFLAGS) $(LINT_OBJS) $(LINTLIBS)
1008N/A
1008N/Aclean:
1008N/A $(RM) $(OBJECTS) $(LINT_OBJS) $(MSGFILES)
1008N/A
1255N/Acheck:
1008N/A $(CSTYLE) -p -P $(OBJECTS:%.o=%.c) *.h
1008N/A $(HDRCHK) *.h
1008N/A
1008N/Acatalog: $(POFILE)
1008N/A
1008N/A$(POFILE): $(MSGFILES)
1008N/A $(BUILDPO.msgfiles)
1008N/A
1008N/Ainclude $(SRC)/cmd/Makefile.targ
1008N/Ainclude $(SRC)/Makefile.msg.targ
1008N/A