Makefile revision 73427c57f824c3ec3b396181b163f37d50c5b3b1
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# CDDL HEADER START
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# The contents of this file are subject to the terms of the
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# Common Development and Distribution License (the "License").
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# You may not use this file except in compliance with the License.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# or http://www.opensolaris.org/os/licensing.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# See the License for the specific language governing permissions
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# and limitations under the License.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# When distributing Covered Code, include this CDDL HEADER in each
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# If applicable, add the following below this CDDL HEADER, with the
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# fields enclosed by brackets "[]" replaced with your own identifying
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# information: Portions Copyright [yyyy] [name of copyright owner]
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# CDDL HEADER END
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# Use is subject to license terms.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# ident "%Z%%M% %I% %E% SMI"
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam#
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslaminclude ../Makefile.com
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan HaslamASFLAGS += -D_ASM -P $(CPPFLAGS)
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan HaslamCLOBBER_FILES += helper_helper.o annotated_helper.o
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam# For the helper test we require an executable data section.
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslamustack/tst.helper.exe := LDFLAGS = -M$(SRC)/cmd/mapfile_noexstk
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslamustack/tst.helper.exe: ustack/tst.helper.o ustack/helper_helper.o
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(LINK.c) -o ustack/tst.helper.exe \
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam ustack/tst.helper.o ustack/helper_helper.o $(LDLIBS)
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(POST_PROCESS) ; $(STRIP_STABS)
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslamustack/helper_helper.o: ustack/helper_helper.d
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(COMPILE.d) -o ustack/helper_helper.o -s ustack/helper_helper.d
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslamustack/tst.annotated.exe: ustack/tst.annotated.o ustack/annotated_helper.o
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(LINK.c) -o ustack/tst.annotated.exe \
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam ustack/tst.annotated.o ustack/annotated_helper.o $(LDLIBS)
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(POST_PROCESS) ; $(STRIP_STABS)
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslamustack/annotated_helper.o: ustack/annotated_helper.d
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam $(COMPILE.d) -o ustack/annotated_helper.o -s ustack/annotated_helper.d
b9e93c10c0a2a4bb069d38bb311021a9478c4711Jonathan Haslam