Update V8 to version 4.7.47.
[chromium-blink-merge.git] / third_party / sqlite / google_generate_amalgamation.sh
blobfe7ee8aebf961625168c28b3421bd1d662872eec
1 #!/bin/bash
3 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
7 cd src
9 mkdir bld
10 cd bld
11 ../configure
12 FILES="sqlite3.h sqlite3.c"
13 # Add any options from sqlite.gyp referenced by parse.y or mkkeywordhash.c.
14 OPTS=""
15 make "OPTS=$OPTS" $FILES
16 cp -f $FILES ../../amalgamation
18 cd ..
19 rm -rf bld