Makefile revision 9512fe850e98fdd448c638ca63fdd92a8a510255
152N/A#
152N/A# CDDL HEADER START
152N/A#
152N/A# The contents of this file are subject to the terms of the
152N/A# Common Development and Distribution License (the "License").
152N/A# You may not use this file except in compliance with the License.
152N/A#
152N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
152N/A# or http://www.opensolaris.org/os/licensing.
152N/A# See the License for the specific language governing permissions
152N/A# and limitations under the License.
152N/A#
152N/A# When distributing Covered Code, include this CDDL HEADER in each
152N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
152N/A# If applicable, add the following below this CDDL HEADER, with the
152N/A# fields enclosed by brackets "[]" replaced with your own identifying
152N/A# information: Portions Copyright [yyyy] [name of copyright owner]
152N/A#
152N/A# CDDL HEADER END
152N/A#
3661N/A
152N/A#
152N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
152N/A# Use is subject to license terms.
152N/A#
760N/A#ident "%Z%%M% %I% %E% SMI"
618N/A
152N/Ainclude ../Makefile.com
760N/A
844N/AASFLAGS += -D_ASM -K PIC -P
844N/A
760N/Aclobber := DSRC += ustack/tst.helper_helper.d ustack/tst.annotated_helper.d
1273N/A
1273N/Aall: ustack/tst.helper.exe ustack/tst.annotated.exe
3661N/A
3661N/Austack/tst.helper.exe: ustack/tst.helper.o ustack/tst.helper_helper.o
152N/A $(CC) -o ustack/tst.helper.exe \
152N/A ustack/tst.helper.o ustack/tst.helper_helper.o
152N/A $(STRIP) ustack/tst.helper.exe
760N/A
844N/Austack/tst.helper_helper.o: ustack/tst.helper_helper.d
844N/A /usr/sbin/dtrace -G -o ustack/tst.helper_helper.o \
760N/A -s ustack/tst.helper_helper.d
152N/A
152N/Austack/tst.annotated.exe: ustack/tst.annotated.o ustack/tst.annotated_helper.o
152N/A $(CC) -o ustack/tst.annotated.exe \
152N/A ustack/tst.annotated.o ustack/tst.annotated_helper.o
152N/A
152N/Austack/tst.annotated_helper.o: ustack/tst.annotated_helper.d
152N/A /usr/sbin/dtrace -G -o ustack/tst.annotated_helper.o \
152N/A -s ustack/tst.annotated_helper.d
277N/A