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