| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 where.c | 354 where.c |
| 355 | 355 |
| 356 parse.c | 356 parse.c |
| 357 | 357 |
| 358 tokenize.c | 358 tokenize.c |
| 359 complete.c | 359 complete.c |
| 360 | 360 |
| 361 main.c | 361 main.c |
| 362 notify.c | 362 notify.c |
| 363 | 363 |
| 364 recover.c | |
| 365 recover_varint.c | |
| 366 | |
| 367 fts3.c | 364 fts3.c |
| 368 fts3_aux.c | 365 fts3_aux.c |
| 369 fts3_expr.c | 366 fts3_expr.c |
| 370 fts3_hash.c | 367 fts3_hash.c |
| 371 fts3_porter.c | 368 fts3_porter.c |
| 372 fts3_tokenizer.c | 369 fts3_tokenizer.c |
| 373 fts3_tokenizer1.c | 370 fts3_tokenizer1.c |
| 374 fts3_tokenize_vtab.c | 371 fts3_tokenize_vtab.c |
| 375 fts3_write.c | 372 fts3_write.c |
| 376 fts3_snippet.c | 373 fts3_snippet.c |
| 377 fts3_unicode.c | 374 fts3_unicode.c |
| 378 fts3_unicode2.c | 375 fts3_unicode2.c |
| 379 | 376 |
| 380 rtree.c | 377 rtree.c |
| 381 icu.c | 378 icu.c |
| 382 fts3_icu.c | 379 fts3_icu.c |
| 383 sqlite3rbu.c | 380 sqlite3rbu.c |
| 384 dbstat.c | 381 dbstat.c |
| 385 json1.c | 382 json1.c |
| 386 fts5.c | 383 fts5.c |
| 387 } { | 384 } { |
| 388 copy_file tsrc/$file | 385 copy_file tsrc/$file |
| 389 } | 386 } |
| 390 | 387 |
| 391 close $out | 388 close $out |
| OLD | NEW |