X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/77cc3118ce7a3a70a0a7364d77ae1eb766a477e7..afe874b1634377ecb27057ee76deb04915bb34d7:/unit-tests/test-cases/prebound-split-seg/Makefile diff --git a/unit-tests/test-cases/prebound-split-seg/Makefile b/unit-tests/test-cases/prebound-split-seg/Makefile index 07bce59..67ed3fa 100644 --- a/unit-tests/test-cases/prebound-split-seg/Makefile +++ b/unit-tests/test-cases/prebound-split-seg/Makefile @@ -29,11 +29,22 @@ SHELL = bash # use bash shell so we can redirect just stderr # The point of this test is to build a prebound split-seg library # -run: all +all: all-${ARCH} -all: +all-i386: all-32 +all-ppc: all-32 +all-x86_64: all-good +all-armv6: all-good +all-armv7: all-good + + +all-good: + ${PASS_IFF} true + + +all-32: ${CC} ${CCFLAGS} -seg_addr_table address_table -prebind bar.c -dynamiclib -o libbar.dylib -install_name /foo/bar/libbar.dylib ${PASS_IFF_GOOD_MACHO} libbar.dylib clean: - rm *.dylib + rm -rf *.dylib