X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/2f2f92e40575142405a1caa9bcf847f7ad011c92..b2fa67a80bc53211e4d1ea81f23e9f953ee1dd6c:/unit-tests/test-cases/weak_import3/Makefile diff --git a/unit-tests/test-cases/weak_import3/Makefile b/unit-tests/test-cases/weak_import3/Makefile old mode 100755 new mode 100644 index 98a2779..2c8806d --- a/unit-tests/test-cases/weak_import3/Makefile +++ b/unit-tests/test-cases/weak_import3/Makefile @@ -31,13 +31,16 @@ include ${TESTROOT}/include/common.makefile run: all all: - ${CC} ${CCFLAGS} -c foo.c -o foo-${ARCH}.o - ${FAIL_IF_BAD_OBJ} foo-${ARCH}.o + ${CC} ${CCFLAGS} -c foo.c -o foo.o + ${FAIL_IF_BAD_OBJ} foo.o - ${CC} ${CCFLAGS} -c foo1.c -o foo1-${ARCH}.o - ${FAIL_IF_BAD_OBJ} foo1-${ARCH}.o + ${CC} ${CCFLAGS} -c foo1.c -o foo1.o + ${FAIL_IF_BAD_OBJ} foo1.o - ${PASS_IFF_ERROR} ${CC} ${CCFLAGS} -dynamiclib foo-${ARCH}.o foo1-${ARCH}.o -o libfoo-${ARCH}.dylib 2>/dev/null + ${PASS_IFF_ERROR} ${CC} ${CCFLAGS} -dynamiclib foo.o foo1.o -o libfoo.dylib clean: - rm -rf *.o *.dylib main-* + rm -rf foo.o foo1.o libfoo.dylib + + +#2>/dev/null \ No newline at end of file