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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 | 654 |
655 clean: | 655 clean: |
656 rm -f *.o sqlite3$(EXE) libsqlite3.a sqlite3.h opcodes.* | 656 rm -f *.o sqlite3$(EXE) libsqlite3.a sqlite3.h opcodes.* |
657 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h | 657 rm -f lemon lempar.c parse.* sqlite*.tar.gz mkkeywordhash keywordhash.h |
658 rm -f $(PUBLISH) | 658 rm -f $(PUBLISH) |
659 rm -f *.da *.bb *.bbg gmon.out | 659 rm -f *.da *.bb *.bbg gmon.out |
660 rm -rf tsrc target_source | 660 rm -rf tsrc target_source |
661 rm -f testloadext.dll libtestloadext.so | 661 rm -f testloadext.dll libtestloadext.so |
662 rm -f sqlite3.c fts?amal.c tclsqlite3.c | 662 rm -f sqlite3.c fts?amal.c tclsqlite3.c |
663 rm -f $(SHPREFIX)sqlite3.$(SO) | 663 rm -f $(SHPREFIX)sqlite3.$(SO) |
OLD | NEW |