Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
463N/A#
463N/A# CDDL HEADER START
1276N/A#
463N/A# The contents of this file are subject to the terms of the
1276N/A# Common Development and Distribution License (the "License").
463N/A# You may not use this file except in compliance with the License.
463N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
919N/A# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
919N/A#
463N/A
463N/Ainclude $(SRC)/cmd/Makefile.cmd
463N/A
463N/APROG = trapstat
493N/AOBJS = trapstat.o
463N/A
970N/A# Symbol capabilities objects are added for sun4u and sun4v.
970N/AEXTOBJS = ../capabilities/sun4u/symcap.o \
970N/A ../capabilities/sun4v/symcap.o
970N/A
463N/ACPPFLAGS += -I$(SRC)/uts/sun4 -I.
1276N/ALINTFLAGS += -erroff=E_SEC_PRINTF_VAR_FMT
463N/ACERRWARN += -_gcc=-Wno-clobbered
911N/A
1276N/A.KEEP_STATE:
1276N/A
1276N/Aall: $(PROG)
911N/A
463N/Ainstall: $(ROOTUSRSBINPROG)
463N/A
463N/A$(PROG): $(OBJS) $(EXTOBJS)
463N/A $(LINK.c) -o $(PROG) $(OBJS) $(EXTOBJS) $(LDLIBS)
1276N/A $(POST_PROCESS)
493N/A
463N/Aclean:
970N/A $(RM) $(OBJS) $(EXTOBJS)
970N/A
970N/Alint: lint_PROG
463N/A
include $(SRC)/cmd/Makefile.targ