]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/rpath-dlopen/Makefile
dyld-132.13.tar.gz
[apple/dyld.git] / unit-tests / test-cases / rpath-dlopen / Makefile
index ce347460a8872780c03a465efbe804ad60cb3838..f08dfc95ab79783bfeb5e7a4338f8419ffe68951 100644 (file)
 TESTROOT = ../..
 include ${TESTROOT}/include/common.makefile
 
+PWD = $(shell pwd)
 
 #
 # a main executable linked with -rpath and uses dlopen can find a dylib
 #
 
+all-check: all check
 
-run: all
+check:
        ./main
 
 all: main
@@ -40,7 +42,7 @@ hide/hole/libfoo.dylib : foo.c
        
 
 main : main.c hide/hole/libfoo.dylib
-       ${CC} -I${TESTROOT}/include main.c -o main -Wl,-rpath -Wl,`pwd`/hide/hole
+       ${CC} -I${TESTROOT}/include main.c -o main -Wl,-rpath -Wl,${PWD}/hide/hole
 
 clean:
        ${RM} ${RMFLAGS} *~  main hide/hole/libfoo.dylib hide