| OLD | NEW |
| 1 #!/usr/make | 1 #!/usr/make |
| 2 # | 2 # |
| 3 # Makefile for SQLITE | 3 # Makefile for SQLITE |
| 4 # | 4 # |
| 5 # This is a template makefile for SQLite. Most people prefer to | 5 # This is a template makefile for SQLite. Most people prefer to |
| 6 # use the autoconf generated "configure" script to generate the | 6 # use the autoconf generated "configure" script to generate the |
| 7 # makefile automatically. But that does not work for everybody | 7 # makefile automatically. But that does not work for everybody |
| 8 # and in every situation. If you are having problems with the | 8 # and in every situation. If you are having problems with the |
| 9 # "configure" script, you might want to try this makefile as an | 9 # "configure" script, you might want to try this makefile as an |
| 10 # alternative. Create a copy of this file, edit the parameters | 10 # alternative. Create a copy of this file, edit the parameters |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 # with -DNDEBUG=1 | 55 # with -DNDEBUG=1 |
| 56 # | 56 # |
| 57 #OPTS = -DSQLITE_DEBUG=2 | 57 #OPTS = -DSQLITE_DEBUG=2 |
| 58 #OPTS = -DSQLITE_DEBUG=1 | 58 #OPTS = -DSQLITE_DEBUG=1 |
| 59 #OPTS = | 59 #OPTS = |
| 60 | 60 |
| 61 # These flags match those for SQLITE_CFLAGS in config.mk. | 61 # These flags match those for SQLITE_CFLAGS in config.mk. |
| 62 | 62 |
| 63 OPTS += -DNDEBUG | 63 OPTS += -DNDEBUG |
| 64 OPTS += -DSQLITE_CORE | 64 OPTS += -DSQLITE_CORE |
| 65 OPTS += -DSQLITE_ENABLE_FTS1 -DSQLITE_ENABLE_BROKEN_FTS1 | |
| 66 OPTS += -DSQLITE_ENABLE_FTS2 -DSQLITE_ENABLE_BROKEN_FTS2 | 65 OPTS += -DSQLITE_ENABLE_FTS2 -DSQLITE_ENABLE_BROKEN_FTS2 |
| 67 OPTS += -DSQLITE_DEFAULT_FILE_PERMISSIONS=0600 | 66 OPTS += -DSQLITE_DEFAULT_FILE_PERMISSIONS=0600 |
| 68 OPTS += -DHAVE_USLEEP=1 | 67 OPTS += -DHAVE_USLEEP=1 |
| 69 | 68 |
| 70 # Additional SQLite tests. | 69 # Additional SQLite tests. |
| 71 OPTS += -DSQLITE_MEMDEBUG=1 | 70 OPTS += -DSQLITE_MEMDEBUG=1 |
| 72 | 71 |
| 73 # Don't include these ones, they break the SQLite tests. | 72 # Don't include these ones, they break the SQLite tests. |
| 74 # -DSQLITE_OMIT_ATTACH=1 \ | 73 # -DSQLITE_OMIT_ATTACH=1 \ |
| 75 # -DSQLITE_OMIT_LOAD_EXTENSION=1 \ | 74 # -DSQLITE_OMIT_LOAD_EXTENSION=1 \ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 #LIBREADLINE = -static -lreadline -ltermcap | 139 #LIBREADLINE = -static -lreadline -ltermcap |
| 141 | 140 |
| 142 #### Which "awk" program provides nawk compatibilty | 141 #### Which "awk" program provides nawk compatibilty |
| 143 # | 142 # |
| 144 # NAWK = nawk | 143 # NAWK = nawk |
| 145 NAWK = awk | 144 NAWK = awk |
| 146 | 145 |
| 147 # You should not have to change anything below this line | 146 # You should not have to change anything below this line |
| 148 ############################################################################### | 147 ############################################################################### |
| 149 include $(TOP)/main.mk | 148 include $(TOP)/main.mk |
| OLD | NEW |