]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/non-weak-library/Makefile
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / non-weak-library / Makefile
index 2c49d4f69163ebb9aad22294549c01e379f1594f..540909d1329306c7bcb122856ca873205a8697c9 100644 (file)
@@ -1,5 +1,5 @@
 ##
-# Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
+# Copyright (c) 2005-2008 Apple Inc. All rights reserved.
 #
 # @APPLE_LICENSE_HEADER_START@
 # 
 TESTROOT = ../..
 include ${TESTROOT}/include/common.makefile
 
-run: all
+all-check: all check
+
+check:
        cd absent/  && ../${TESTROOT}/bin/exit-non-zero-pass.pl "non-weak-library" "non-weak-library" ./main
        cd present/ && ./main
 
 all: foo.c main.c
        ${CC} -dynamiclib -prebind -seg1addr 400000 -o libfoo.dylib foo.c
        mkdir -p absent/
-       export MACOSX_DEPLOYMENT_TARGET=10.2 && ${CC} -prebind -I${TESTROOT}/include -L. -lfoo -DLIB_ABSENT  -o absent/main  main.c
+       ${CC} -prebind -I${TESTROOT}/include -L. -lfoo -DLIB_ABSENT  -o absent/main  main.c
        mkdir -p present/
-       export MACOSX_DEPLOYMENT_TARGET=10.2 && ${CC} -prebind -I${TESTROOT}/include -L. -lfoo -DLIB_PRESENT -o present/main main.c
+       ${CC} -prebind -I${TESTROOT}/include -L. -lfoo -DLIB_PRESENT -o present/main main.c
        mv libfoo.dylib present/
 
 clean: