| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 #SO = so | 96 #SO = so |
| 97 #SHPREFIX = lib | 97 #SHPREFIX = lib |
| 98 MKSHLIB = $(MINGW32CE)/$(TARGET)-gcc -shared | 98 MKSHLIB = $(MINGW32CE)/$(TARGET)-gcc -shared |
| 99 SO = dll | 99 SO = dll |
| 100 SHPREFIX = | 100 SHPREFIX = |
| 101 | 101 |
| 102 #### Extra compiler options needed for programs that use the TCL library. | 102 #### Extra compiler options needed for programs that use the TCL library. |
| 103 # | 103 # |
| 104 #TCL_FLAGS = | 104 #TCL_FLAGS = |
| 105 #TCL_FLAGS = -DSTATIC_BUILD=1 | 105 #TCL_FLAGS = -DSTATIC_BUILD=1 |
| 106 TCL_FLAGS = -I/home/drh/tcltk/8.4linux | 106 TCL_FLAGS = -I/home/drh/tcltk/8.5linux |
| 107 #TCL_FLAGS = -I/home/drh/tcltk/8.4win -DSTATIC_BUILD=1 | 107 #TCL_FLAGS = -I/home/drh/tcltk/8.5win -DSTATIC_BUILD=1 |
| 108 #TCL_FLAGS = -I/home/drh/tcltk/8.3hpux | 108 #TCL_FLAGS = -I/home/drh/tcltk/8.3hpux |
| 109 | 109 |
| 110 #### Linker options needed to link against the TCL library. | 110 #### Linker options needed to link against the TCL library. |
| 111 # | 111 # |
| 112 #LIBTCL = -ltcl -lm -ldl | 112 #LIBTCL = -ltcl -lm -ldl |
| 113 LIBTCL = /home/drh/tcltk/8.4linux/libtcl8.4g.a -lm -ldl | 113 LIBTCL = /home/drh/tcltk/8.5linux/libtcl8.5g.a -lm -ldl |
| 114 #LIBTCL = /home/drh/tcltk/8.4win/libtcl84s.a -lmsvcrt | 114 #LIBTCL = /home/drh/tcltk/8.5win/libtcl85s.a -lmsvcrt |
| 115 #LIBTCL = /home/drh/tcltk/8.3hpux/libtcl8.3.a -ldld -lm -lc | 115 #LIBTCL = /home/drh/tcltk/8.3hpux/libtcl8.3.a -ldld -lm -lc |
| 116 | 116 |
| 117 #### Additional objects for SQLite library when TCL support is enabled. | 117 #### Additional objects for SQLite library when TCL support is enabled. |
| 118 TCLOBJ = | 118 TCLOBJ = |
| 119 #TCLOBJ = tclsqlite.o | 119 #TCLOBJ = tclsqlite.o |
| 120 | 120 |
| 121 #### Compiler options needed for programs that use the readline() library. | 121 #### Compiler options needed for programs that use the readline() library. |
| 122 # | 122 # |
| 123 READLINE_FLAGS = | 123 READLINE_FLAGS = |
| 124 #READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline | 124 #READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline |
| 125 | 125 |
| 126 #### Linker options needed by programs using readline() must link against. | 126 #### Linker options needed by programs using readline() must link against. |
| 127 # | 127 # |
| 128 LIBREADLINE = | 128 LIBREADLINE = |
| 129 #LIBREADLINE = -static -lreadline -ltermcap | 129 #LIBREADLINE = -static -lreadline -ltermcap |
| 130 | 130 |
| 131 #### Which "awk" program provides nawk compatibilty | 131 #### Which "awk" program provides nawk compatibilty |
| 132 # | 132 # |
| 133 # NAWK = nawk | 133 # NAWK = nawk |
| 134 NAWK = awk | 134 NAWK = awk |
| 135 | 135 |
| 136 # You should not have to change anything below this line | 136 # You should not have to change anything below this line |
| 137 ############################################################################### | 137 ############################################################################### |
| 138 include $(TOP)/main.mk | 138 include $(TOP)/main.mk |
| OLD | NEW |