Makefile revision 0bb073995ac5a95bd35f2dd790df1ea3d8c2d507
90N/A#
90N/A# CDDL HEADER START
90N/A#
90N/A# The contents of this file are subject to the terms of the
911N/A# Common Development and Distribution License (the "License").
851N/A# You may not use this file except in compliance with the License.
90N/A#
90N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90N/A# or http://www.opensolaris.org/os/licensing.
90N/A# See the License for the specific language governing permissions
90N/A# and limitations under the License.
90N/A#
90N/A# When distributing Covered Code, include this CDDL HEADER in each
90N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
90N/A# If applicable, add the following below this CDDL HEADER, with the
90N/A# fields enclosed by brackets "[]" replaced with your own identifying
90N/A# information: Portions Copyright [yyyy] [name of copyright owner]
90N/A#
90N/A# CDDL HEADER END
90N/A#
90N/A#
90N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
90N/A# Use is subject to license terms.
90N/A#
90N/A# ucbcmd/ps/sparcv9/Makefile
90N/A#
90N/A
90N/APROG= ps
90N/A
90N/AOBJS= ps.o
90N/A
90N/ASRCS= $(OBJS:%.o=../%.c)
90N/A
90N/Ainclude ../../Makefile.ucbcmd
90N/Ainclude ../../Makefile.ucbcmd.64
493N/A
90N/ACFLAGS64 += $(CCVERBOSE)
90N/A
851N/Alint := LINTFLAGS64 = -x -m64
90N/A
911N/AFILEMODE= 0555
911N/AOWNER= root
911N/AGROUP= sys
911N/A
90N/A.KEEP_STATE:
90N/A
90N/A%.o: ../%.c
90N/A $(COMPILE.c) $<
90N/A
90N/Aall: $(PROG)
90N/A
90N/A$(PROG): $(OBJS)
90N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
493N/A $(POST_PROCESS)
90N/A
90N/Ainstall: all $(ROOTPROG64)
493N/A
90N/Aclean:
90N/A $(RM) $(OBJS)
493N/A
90N/Alint:
90N/A $(LINT.c) $(SRCS) $(LDLIBS)
90N/A
90N/Ainclude ../../Makefile.ucbtarg
90N/A