Makefile revision a192e900f6d2b0e1a822e3252c0dfd795ed49d76
3827N/A#
3827N/A# CDDL HEADER START
3827N/A#
3827N/A# The contents of this file are subject to the terms of the
3827N/A# Common Development and Distribution License (the "License").
3827N/A# You may not use this file except in compliance with the License.
3827N/A#
3827N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3827N/A# or http://www.opensolaris.org/os/licensing.
3827N/A# See the License for the specific language governing permissions
3827N/A# and limitations under the License.
3827N/A#
3827N/A# When distributing Covered Code, include this CDDL HEADER in each
3827N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3827N/A# If applicable, add the following below this CDDL HEADER, with the
3827N/A# fields enclosed by brackets "[]" replaced with your own identifying
3827N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3827N/A#
3827N/A# CDDL HEADER END
3827N/A#
3827N/A#
3827N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3827N/A# Use is subject to license terms.
3827N/A#
3827N/A#ident "%Z%%M% %I% %E% SMI"
3827N/A
3827N/APROG = dumpadm
3827N/AMANIFEST = dumpadm.xml
3827N/ASVCMETHOD= svc-dumpadm
3827N/A
3827N/AOBJS = main.o dconf.o minfree.o utils.o swap.o
3827N/ASRCS = $(OBJS:.o=.c)
3827N/A
3827N/A
3827N/Alint := LINTFLAGS = -mx
3827N/A
3827N/Ainclude ../Makefile.cmd
3827N/A
3827N/ACFLAGS += $(CCVERBOSE)
3827N/A
3827N/AFILEMODE = 0555
3827N/AOWNER = root
3827N/AGROUP = bin
3827N/A
3827N/AROOTMANIFESTDIR = $(ROOTSVCSYSTEM)
3827N/A
3827N/ALDLIBS += -ldiskmgt
3827N/A
3827N/A.KEEP_STATE:
3827N/A
3827N/Aall: $(PROG)
3827N/A
3827N/A$(PROG): $(OBJS)
3827N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
3827N/A $(POST_PROCESS)
3827N/A
3827N/Ainstall: all $(ROOTUSRSBINPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
3827N/A
3827N/Acheck: $(CHKMANIFEST)
3827N/A
3827N/Aclean:
3827N/A $(RM) $(OBJS)
3827N/A
3827N/Alint: lint_SRCS
3827N/A
3827N/Ainclude ../Makefile.targ
3827N/A