]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/bundle-reload/Makefile
dyld-851.27.tar.gz
[apple/dyld.git] / unit-tests / test-cases / bundle-reload / Makefile
index a32ecb56de24873573e311d44eeaf6d7ae8e535a..723c2c65fbaf2125bb7a7f98877415c85eda29a0 100644 (file)
 TESTROOT = ../..
 include ${TESTROOT}/include/common.makefile
 
-ifeq "-arch ppc" "$(ARCH)"
+ifeq "ppc" "$(ARCH)"
        CXX_VERSION = g++-3.3 
 else 
        CXX_VERSION = ${CXX} 
 endif
 
-run: all
+all-check: all check
+
+check:
        ./main
 
 all: main test.bundle
 
 main : main.c
-       ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c
+       ${CC} ${CCFLAGS} -Wno-deprecated-declarations -I${TESTROOT}/include -o main main.c
 
 test.bundle : bundle.cxx
-       ${CC} ${CXXFLAGS} -bundle -o test.bundle bundle.cxx
+       ${CXX} ${CXXFLAGS} -bundle -o test.bundle bundle.cxx
 
 clean:
        ${RM} ${RMFLAGS} *~ main test.bundle