Makefile revision 24da5b34f49324ed742a340010ed5bd3d4e06625
500N/A#
500N/A# CDDL HEADER START
500N/A#
500N/A# The contents of this file are subject to the terms of the
943N/A# Common Development and Distribution License (the "License").
500N/A# You may not use this file except in compliance with the License.
500N/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 2007 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
500N/A#
500N/A# ident "%Z%%M% %I% %E% SMI"
500N/A#
500N/A
500N/Ainclude ../Makefile.com
500N/A
970N/AASFLAGS += -P -D_ASM $(CPPFLAGS)
970N/ACLOBBER_FILES += helper_helper.o annotated_helper.o
970N/A
970N/A# For the helper test we require an executable data section.
970N/Austack/tst.helper.exe := LDFLAGS = -M$(MAPFILE.NES)
970N/A
970N/Austack/tst.helper.exe: ustack/tst.helper.o ustack/helper_helper.o
1003N/A $(LINK.c) -o ustack/tst.helper.exe \
1003N/A ustack/tst.helper.o ustack/helper_helper.o $(LDLIBS)
1003N/A $(POST_PROCESS) ; $(STRIP_STABS)
1003N/A
500N/Austack/helper_helper.o: ustack/helper_helper.d
500N/A $(COMPILE.d) -o ustack/helper_helper.o -s ustack/helper_helper.d
500N/A
500N/Austack/tst.annotated.exe: ustack/tst.annotated.o ustack/annotated_helper.o
500N/A $(LINK.c) -o ustack/tst.annotated.exe \
500N/A ustack/tst.annotated.o ustack/annotated_helper.o $(LDLIBS)
500N/A $(POST_PROCESS) ; $(STRIP_STABS)
500N/A
500N/Austack/annotated_helper.o: ustack/annotated_helper.d
500N/A $(COMPILE.d) -o ustack/annotated_helper.o -s ustack/annotated_helper.d
500N/A