OLD | NEW |
1 #!/usr/bin/tclsh | 1 #!/usr/bin/tclsh |
2 # | 2 # |
3 # To build a single huge source file holding all of SQLite (or at | 3 # To build a single huge source file holding all of SQLite (or at |
4 # least the core components - the test harness, shell, and TCL | 4 # least the core components - the test harness, shell, and TCL |
5 # interface are omitted.) first do | 5 # interface are omitted.) first do |
6 # | 6 # |
7 # make target_source | 7 # make target_source |
8 # | 8 # |
9 # The make target above moves all of the source code files into | 9 # The make target above moves all of the source code files into |
10 # a subdirectory named "tsrc". (This script expects to find the files | 10 # a subdirectory named "tsrc". (This script expects to find the files |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 # These are the header files used by SQLite. The first time any of these | 51 # These are the header files used by SQLite. The first time any of these |
52 # files are seen in a #include statement in the C code, include the complete | 52 # files are seen in a #include statement in the C code, include the complete |
53 # text of the file in-line. The file only needs to be included once. | 53 # text of the file in-line. The file only needs to be included once. |
54 # | 54 # |
55 foreach hdr { | 55 foreach hdr { |
56 btree.h | 56 btree.h |
57 btreeInt.h | 57 btreeInt.h |
58 hash.h | 58 hash.h |
59 hwtime.h | 59 hwtime.h |
60 keywordhash.h | 60 keywordhash.h |
| 61 msvc.h |
61 opcodes.h | 62 opcodes.h |
62 os_common.h | 63 os_common.h |
63 os_setup.h | 64 os_setup.h |
64 os_win.h | 65 os_win.h |
65 os.h | 66 os.h |
66 pager.h | 67 pager.h |
67 parse.h | 68 parse.h |
68 sqlite3ext.h | 69 sqlite3ext.h |
69 sqlite3.h | 70 sqlite3.h |
70 sqliteInt.h | 71 sqliteInt.h |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 parse.h | 139 parse.h |
139 sqlite3ext.h | 140 sqlite3ext.h |
140 vdbe.h | 141 vdbe.h |
141 } { | 142 } { |
142 if {$available_hdr($file)} { | 143 if {$available_hdr($file)} { |
143 copy_file tsrc/$file | 144 copy_file tsrc/$file |
144 } | 145 } |
145 } | 146 } |
146 | 147 |
147 close $out | 148 close $out |
OLD | NEW |