Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: third_party/sqlite/src/Makefile.in

Issue 3108030: Move bundled copy of sqlite one level deeper to better separate it... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/make 1 #!/usr/make
2 # 2 #
3 # Makefile for SQLITE 3 # Makefile for SQLITE
4 # 4 #
5 # This makefile is suppose to be configured automatically using the 5 # This makefile is suppose to be configured automatically using the
6 # autoconf. But if that does not work for you, you can configure 6 # autoconf. But if that does not work for you, you can configure
7 # the makefile manually. Just set the parameters below to values that 7 # the makefile manually. Just set the parameters below to values that
8 # work well for your system. 8 # work well for your system.
9 # 9 #
10 # If the configure script does not work out-of-the-box, you might 10 # If the configure script does not work out-of-the-box, you might
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 $(REAL_LIBOBJ): $(LIBOBJ) 822 $(REAL_LIBOBJ): $(LIBOBJ)
823 823
824 sqlite3.def: $(REAL_LIBOBJ) 824 sqlite3.def: $(REAL_LIBOBJ)
825 echo 'EXPORTS' >sqlite3.def 825 echo 'EXPORTS' >sqlite3.def
826 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \ 826 nm $(REAL_LIBOBJ) | grep ' T ' | grep ' _sqlite3_' \
827 | sed 's/^.* _//' >>sqlite3.def 827 | sed 's/^.* _//' >>sqlite3.def
828 828
829 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def 829 sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
830 $(TCC) -shared -o $@ sqlite3.def \ 830 $(TCC) -shared -o $@ sqlite3.def \
831 -Wl,"--strip-all" $(REAL_LIBOBJ) 831 -Wl,"--strip-all" $(REAL_LIBOBJ)
OLDNEW
« no previous file with comments | « third_party/sqlite/src/Makefile.arm-wince-mingw32ce-gcc ('k') | third_party/sqlite/src/Makefile.linux-gcc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698