Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 LDFLAGS=-Xlinker -dylib | |
Mark Mentovai
2014/02/03 22:01:46
Unused. Remove.
rsesek
2014/02/03 22:36:20
Done.
| |
2 | |
3 all: libarchtest.dylib archtest.exe | 1 all: libarchtest.dylib archtest.exe |
4 | 2 |
5 archtest32.exe: archtest.c | 3 archtest32.exe: archtest.c |
6 clang -m32 $< -o $@ | 4 clang -m32 $< -o $@ |
7 | 5 |
8 archtest64.exe: archtest.c | 6 archtest64.exe: archtest.c |
9 clang -m64 $< -o $@ | 7 clang -m64 $< -o $@ |
10 | 8 |
11 archtest.exe: archtest32.exe archtest64.exe | 9 archtest.exe: archtest32.exe archtest64.exe |
12 lipo $^ -create -output $@ | 10 lipo $^ -create -output $@ |
13 | 11 |
14 libarchtest32.dylib: archtest.c | 12 libarchtest32.dylib: archtest.c |
15 clang -m32 -dynamiclib $< -o $@ | 13 clang -m32 -dynamiclib $< -o $@ |
16 | 14 |
17 libarchtest64.dylib: archtest.c | 15 libarchtest64.dylib: archtest.c |
18 clang -m64 -dynamiclib $< -o $@ | 16 clang -m64 -dynamiclib $< -o $@ |
19 | 17 |
20 libarchtest.dylib: libarchtest32.dylib libarchtest64.dylib | 18 libarchtest.dylib: libarchtest32.dylib libarchtest64.dylib |
21 lipo $^ -create -output $@ | 19 lipo $^ -create -output $@ |
22 | 20 |
23 clean: | 21 clean: |
24 rm -f *.dylib *.exe | 22 rm -f *.dylib *.exe |
LEFT | RIGHT |