1# quick test
2all: 
3	perl test.pl $(MAKEFLAGS)
4
5# default-arch but otherwise comprehensive test for buildbot
6buildbot:
7	perl test.pl $(MAKEFLAGS) MEM=mrc,gc CC=clang,llvm-gcc-4.2,gcc-4.2 LANGUAGE=c,c++,objc,objc++
8
9# comprehensive tests
10mac macos macosx:
11	perl test.pl $(MAKEFLAGS) ARCH=x86_64,i386 MEM=mrc,gc CC=clang,llvm-gcc-4.2,gcc-4.2 LANGUAGE=c,c++,objc,objc++
12
13iphonesimulator:
14	perl test.pl $(MAKEFLAGS) ARCH=i386 SDK=iphonesimulator MEM=mrc CC=clang,llvm-gcc-4.2,gcc-4.2 LANGUAGE=c,c++,objc,objc++
15
16iphoneos:
17	perl test.pl $(MAKEFLAGS) ARCH=armv6,armv7 SDK=iphoneos MEM=mrc CC=clang,llvm-gcc-4.2,gcc-4.2 LANGUAGE=c,c++,objc,objc++
18
19clean: 
20	@ perl test.pl clean
21