| OLD | NEW |
| 1 ############################################################################### | 1 ############################################################################### |
| 2 # The following macros should be defined before this script is | 2 # The following macros should be defined before this script is |
| 3 # invoked: | 3 # invoked: |
| 4 # | 4 # |
| 5 # TOP The toplevel directory of the source tree. This is the | 5 # TOP The toplevel directory of the source tree. This is the |
| 6 # directory that contains this "Makefile.in" and the | 6 # directory that contains this "Makefile.in" and the |
| 7 # "configure.in" script. | 7 # "configure.in" script. |
| 8 # | 8 # |
| 9 # BCC C Compiler and options for use in building executables that | 9 # BCC C Compiler and options for use in building executables that |
| 10 # will run on the platform that is doing the build. | 10 # will run on the platform that is doing the build. |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 494 |
| 495 fulltest: testfixture$(EXE) sqlite3$(EXE) | 495 fulltest: testfixture$(EXE) sqlite3$(EXE) |
| 496 ./testfixture$(EXE) $(TOP)/test/all.test | 496 ./testfixture$(EXE) $(TOP)/test/all.test |
| 497 | 497 |
| 498 soaktest: testfixture$(EXE) sqlite3$(EXE) | 498 soaktest: testfixture$(EXE) sqlite3$(EXE) |
| 499 ./testfixture$(EXE) $(TOP)/test/all.test -soak 1 | 499 ./testfixture$(EXE) $(TOP)/test/all.test -soak 1 |
| 500 | 500 |
| 501 test: testfixture$(EXE) sqlite3$(EXE) | 501 test: testfixture$(EXE) sqlite3$(EXE) |
| 502 ./testfixture$(EXE) $(TOP)/test/veryquick.test | 502 ./testfixture$(EXE) $(TOP)/test/veryquick.test |
| 503 | 503 |
| 504 ftstest: testfixture$(EXE) sqlite3$(EXE) | |
| 505 ./testfixture$(EXE) $(TOP)/test/fts.test | |
| 506 | |
| 507 fts2test: testfixture$(EXE) sqlite3$(EXE) | 504 fts2test: testfixture$(EXE) sqlite3$(EXE) |
| 508 ./testfixture$(EXE) $(TOP)/test/fts2.test | 505 ./testfixture$(EXE) $(TOP)/test/fts2.test |
| 509 | 506 |
| 510 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \ | 507 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \ |
| 511 $(TOP)/tool/spaceanal.tcl | 508 $(TOP)/tool/spaceanal.tcl |
| 512 sed \ | 509 sed \ |
| 513 -e '/^#/d' \ | 510 -e '/^#/d' \ |
| 514 -e 's,\\,\\\\,g' \ | 511 -e 's,\\,\\\\,g' \ |
| 515 -e 's,",\\",g' \ | 512 -e 's,",\\",g' \ |
| 516 -e 's,^,",' \ | 513 -e 's,^,",' \ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 538 mv sqlite3.h /usr/include | 535 mv sqlite3.h /usr/include |
| 539 | 536 |
| 540 clean: | 537 clean: |
| 541 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.* | 538 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.* |
| 542 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h | 539 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h |
| 543 rm -f $(PUBLISH) | 540 rm -f $(PUBLISH) |
| 544 rm -f *.da *.bb *.bbg gmon.out | 541 rm -f *.da *.bb *.bbg gmon.out |
| 545 rm -rf tsrc target_source | 542 rm -rf tsrc target_source |
| 546 rm -f testloadext.dll libtestloadext.so | 543 rm -f testloadext.dll libtestloadext.so |
| 547 rm -f sqlite3.c fts?amal.c tclsqlite3.c | 544 rm -f sqlite3.c fts?amal.c tclsqlite3.c |
| OLD | NEW |