Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(11)

Delta Between Two Patch Sets: src/tools/mac/upload_system_symbols/testdata/Makefile

Issue 1124002: Create a new tool to upload Mac system library symbols. (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Left Patch Set: Created 11 years, 2 months ago
Right Patch Set: Created 11 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted