Upstream version 10.38.222.0
[platform/framework/web/crosswalk.git] / src / breakpad / src / tools / mac / upload_system_symbols / testdata / Makefile
1 all: libarchtest.dylib archtest.exe
2
3 archtest32.exe: archtest.c
4         clang -m32 $< -o $@
5
6 archtest64.exe: archtest.c
7         clang -m64 $< -o $@
8
9 archtest.exe: archtest32.exe archtest64.exe
10         lipo $^ -create -output $@
11
12 libarchtest32.dylib: archtest.c
13         clang -m32 -dynamiclib $< -o $@
14
15 libarchtest64.dylib: archtest.c
16         clang -m64 -dynamiclib $< -o $@
17
18 libarchtest.dylib: libarchtest32.dylib libarchtest64.dylib
19         lipo $^ -create -output $@
20
21 clean:
22         rm -f *.dylib *.exe