| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 where.c | 286 where.c |
| 287 | 287 |
| 288 parse.c | 288 parse.c |
| 289 | 289 |
| 290 tokenize.c | 290 tokenize.c |
| 291 complete.c | 291 complete.c |
| 292 | 292 |
| 293 main.c | 293 main.c |
| 294 notify.c | 294 notify.c |
| 295 | 295 |
| 296 recover.c | |
| 297 | |
| 298 fts3.c | 296 fts3.c |
| 299 fts3_aux.c | 297 fts3_aux.c |
| 300 fts3_expr.c | 298 fts3_expr.c |
| 301 fts3_hash.c | 299 fts3_hash.c |
| 302 fts3_porter.c | 300 fts3_porter.c |
| 303 fts3_tokenizer.c | 301 fts3_tokenizer.c |
| 304 fts3_tokenizer1.c | 302 fts3_tokenizer1.c |
| 305 fts3_write.c | 303 fts3_write.c |
| 306 fts3_snippet.c | 304 fts3_snippet.c |
| 307 | 305 |
| 308 rtree.c | 306 rtree.c |
| 309 icu.c | 307 icu.c |
| 310 fts3_icu.c | 308 fts3_icu.c |
| 311 } { | 309 } { |
| 312 copy_file tsrc/$file | 310 copy_file tsrc/$file |
| 313 } | 311 } |
| 314 | 312 |
| 315 close $out | 313 close $out |
| OLD | NEW |