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

Side by Side Diff: third_party/sqlite/sqlite-src-3100200/Makefile.linux-gcc

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 #!/usr/make 1 #!/usr/make
2 # 2 #
3 # Makefile for SQLITE 3 # Makefile for SQLITE
4 # 4 #
5 # This is a template makefile for SQLite. Most people prefer to 5 # This is a template makefile for SQLite. Most people prefer to
6 # use the autoconf generated "configure" script to generate the 6 # use the autoconf generated "configure" script to generate the
7 # makefile automatically. But that does not work for everybody 7 # makefile automatically. But that does not work for everybody
8 # and in every situation. If you are having problems with the 8 # and in every situation. If you are having problems with the
9 # "configure" script, you might want to try this makefile as an 9 # "configure" script, you might want to try this makefile as an
10 # alternative. Create a copy of this file, edit the parameters 10 # alternative. Create a copy of this file, edit the parameters
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 #### Compiler options needed for programs that use the readline() library. 111 #### Compiler options needed for programs that use the readline() library.
112 # 112 #
113 READLINE_FLAGS = 113 READLINE_FLAGS =
114 #READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline 114 #READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline
115 115
116 #### Linker options needed by programs using readline() must link against. 116 #### Linker options needed by programs using readline() must link against.
117 # 117 #
118 LIBREADLINE = 118 LIBREADLINE =
119 #LIBREADLINE = -static -lreadline -ltermcap 119 #LIBREADLINE = -static -lreadline -ltermcap
120 120
121 #### Which "awk" program provides nawk compatibilty
122 #
123 # NAWK = nawk
124 NAWK = awk
125
126 # You should not have to change anything below this line 121 # You should not have to change anything below this line
127 ############################################################################### 122 ###############################################################################
128 include $(TOP)/main.mk 123 include $(TOP)/main.mk
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/Makefile.in ('k') | third_party/sqlite/sqlite-src-3100200/Makefile.msc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698