| OLD | NEW |
| 1 #!/usr/make | 1 #!/usr/make |
| 2 # | 2 # |
| 3 # Makefile for SQLITE on VxWorks | 3 # Makefile for SQLITE on VxWorks |
| 4 | 4 |
| 5 ifeq ($(FORCPU),) | 5 ifeq ($(FORCPU),) |
| 6 FORCPU = SH32gnule | 6 FORCPU = SH32gnule |
| 7 endif | 7 endif |
| 8 | 8 |
| 9 TOOL_FAMILY = gnu | 9 TOOL_FAMILY = gnu |
| 10 | 10 |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 | 652 |
| 653 clean: | 653 clean: |
| 654 rm -f *.o sqlite3$(EXE) libsqlite3.a sqlite3.h opcodes.* | 654 rm -f *.o sqlite3$(EXE) libsqlite3.a sqlite3.h opcodes.* |
| 655 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h | 655 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h |
| 656 rm -f $(PUBLISH) | 656 rm -f $(PUBLISH) |
| 657 rm -f *.da *.bb *.bbg gmon.out | 657 rm -f *.da *.bb *.bbg gmon.out |
| 658 rm -rf tsrc target_source | 658 rm -rf tsrc target_source |
| 659 rm -f testloadext.dll libtestloadext.so | 659 rm -f testloadext.dll libtestloadext.so |
| 660 rm -f sqlite3.c fts?amal.c tclsqlite3.c | 660 rm -f sqlite3.c fts?amal.c tclsqlite3.c |
| 661 rm -f $(SHPREFIX)sqlite3.$(SO) | 661 rm -f $(SHPREFIX)sqlite3.$(SO) |
| OLD | NEW |