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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 parse.h | 137 parse.h |
138 sqlite3ext.h | 138 sqlite3ext.h |
139 vdbe.h | 139 vdbe.h |
140 } { | 140 } { |
141 if {$available_hdr($file)} { | 141 if {$available_hdr($file)} { |
142 copy_file tsrc/$file | 142 copy_file tsrc/$file |
143 } | 143 } |
144 } | 144 } |
145 | 145 |
146 close $out | 146 close $out |
OLD | NEW |