| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 tokenize.c | 299 tokenize.c |
| 300 complete.c | 300 complete.c |
| 301 | 301 |
| 302 main.c | 302 main.c |
| 303 notify.c | 303 notify.c |
| 304 } { | 304 } { |
| 305 copy_file tsrc/$file | 305 copy_file tsrc/$file |
| 306 } | 306 } |
| 307 | 307 |
| 308 close $out | 308 close $out |
| OLD | NEW |