]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/re-export-optimizations/Makefile
ld64-77.tar.gz
[apple/ld64.git] / unit-tests / test-cases / re-export-optimizations / Makefile
CommitLineData
a61fdf0a
A
1##
2# Copyright (c) 2007 Apple Inc. All rights reserved.
3#
4# @APPLE_LICENSE_HEADER_START@
5#
6# This file contains Original Code and/or Modifications of Original Code
7# as defined in and that are subject to the Apple Public Source License
8# Version 2.0 (the 'License'). You may not use this file except in
9# compliance with the License. Please obtain a copy of the License at
10# http://www.opensource.apple.com/apsl/ and read it before using this
11# file.
12#
13# The Original Code and all software distributed under the License are
14# distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15# EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16# INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18# Please see the License for the specific language governing rights and
19# limitations under the License.
20#
21# @APPLE_LICENSE_HEADER_END@
22##
23TESTROOT = ../..
24include ${TESTROOT}/include/common.makefile
25
26#
27# Test that a public re-exported library is automatically added as a dependent
28# unless nothing is used from it.
29#
30
31
32run: all
33
34all:
35
36# -sub_library for 10.4
37 ${CC} ${CCFLAGS} -dynamiclib bar.c -o libbar.dylib -install_name /usr/lib/libbar.dylib -mmacosx-version-min=10.4
38 ${FAIL_IF_BAD_MACHO} libbar.dylib
39 ${CC} ${CCFLAGS} -dynamiclib foo.c -o libfoo.dylib -lbar -L. -sub_library libbar -mmacosx-version-min=10.4
40 ${FAIL_IF_BAD_MACHO} libfoo.dylib
41 ${CC} ${CCFLAGS} main.c -DCALL_BAR libfoo.dylib -o main -L. -mmacosx-version-min=10.4
42 otool -L main | grep libbar | ${FAIL_IF_EMPTY}
43 nm -m main | grep _bar | grep libbar | ${FAIL_IF_EMPTY}
44 ${CC} ${CCFLAGS} main.c libfoo.dylib -o main -L. -mmacosx-version-min=10.4
45 otool -L main | grep libbar | ${FAIL_IF_STDIN}
46
47
48# -sub_library for 10.5
49 ${CC} ${CCFLAGS} -dynamiclib bar.c -o libbar.dylib -install_name /usr/lib/libbar.dylib -mmacosx-version-min=10.5
50 ${FAIL_IF_BAD_MACHO} libbar.dylib
51 ${CC} ${CCFLAGS} -dynamiclib foo.c -o libfoo.dylib -lbar -L. -sub_library libbar -mmacosx-version-min=10.5
52 ${FAIL_IF_BAD_MACHO} libfoo.dylib
53 ${CC} ${CCFLAGS} main.c -DCALL_BAR libfoo.dylib -o main -L. -mmacosx-version-min=10.5
54 otool -L main | grep libbar | ${FAIL_IF_EMPTY}
55 nm -m main | grep _bar | grep libbar | ${FAIL_IF_EMPTY}
56 ${CC} ${CCFLAGS} main.c libfoo.dylib -o main -L. -mmacosx-version-min=10.5
57 otool -L main | grep libbar | ${FAIL_IF_STDIN}
58
59
60 ${PASS_IFF} /usr/bin/true
61
62
63clean:
64
65 rm -rf libbar.dylib libfoo.dylib main