Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
303N/A#
303N/A# CDDL HEADER START
303N/A#
303N/A# The contents of this file are subject to the terms of the
303N/A# Common Development and Distribution License, Version 1.0 only
303N/A# (the "License"). You may not use this file except in compliance
303N/A# with the License.
303N/A#
303N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
303N/A# or http://www.opensolaris.org/os/licensing.
303N/A# See the License for the specific language governing permissions
303N/A# and limitations under the License.
303N/A#
303N/A# When distributing Covered Code, include this CDDL HEADER in each
303N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
303N/A# If applicable, add the following below this CDDL HEADER, with the
303N/A# fields enclosed by brackets "[]" replaced with your own identifying
303N/A# information: Portions Copyright [yyyy] [name of copyright owner]
303N/A#
303N/A# CDDL HEADER END
303N/A#
303N/A#
303N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
303N/A# Use is subject to license terms.
303N/A#
303N/A#ident "%Z%%M% %I% %E% SMI"
303N/A#
303N/A
303N/APLATFORM = sun4v
303N/APLATLINKS =
303N/ACLASS = 32
303N/ASRCDIR=../sun4
303N/A
303N/Ainclude ../../Makefile.cmd
303N/Ainclude ../../../Makefile.psm
303N/A
303N/APROG= trapstat
303N/AOBJS= trapstat.o
303N/ASRCS= $(OBJS:%.o=$(SRCDIR)/%.c)
303N/A
303N/ACFLAGS += -v -Dsun4v
303N/ALDLIBS += -lrt
303N/AIFLAGS = -I$(USR_PSM_INCL_DIR)
303N/ACPPFLAGS += $(IFLAGS) $(ARCHOPTS) -Dsun4v
303N/ALINTFLAGS += $(LDLIBS) -u
303N/A
303N/AFILEMODE= 0555
303N/AGROUP= bin
303N/A
303N/ACLEANFILES += $(OBJS)
303N/A
303N/A%.o : $(SRCDIR)/%.c
303N/A $(COMPILE.c) $<
303N/A
303N/A.KEEP_STATE:
303N/A
303N/Aall: $(PROG)
303N/A
303N/Ainstall: all $(USR_PSM_SBIN_PROG) $(USR_PSM_SBIN_PROG_LINKS)
303N/A
303N/A$(PROG): $(OBJS)
303N/A $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
303N/A $(POST_PROCESS)
303N/A
303N/Aclean:
303N/A -$(RM) $(CLEANFILES)
303N/A
303N/Alint: lint_SRCS
303N/A
401N/Ainclude ../../Makefile.targ
303N/Ainclude ../../../Makefile.psm.targ
303N/A