1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
#!/usr/make
#
# Makefile for SQLITE FTS extensions, use in conjunction with
# mingw-cross-build.sh
#### The toplevel directory of the source tree. This is the directory
# that contains this "Makefile.in" and the "configure.in" script.
#
TOP = ../sqlite3
#### C Compiler and options for use in building executables that
# will run on the platform that is doing the build.
#
BCC = gcc -g -O2
#BCC = /opt/ancic/bin/c89 -0
#### If the target operating system supports the "usleep()" system
# call, then define the HAVE_USLEEP macro for all C modules.
#
USLEEP =
#USLEEP = -DHAVE_USLEEP=1
#### If you want the SQLite library to be safe for use within a
# multi-threaded program, then define the following macro
# appropriately:
#
THREADSAFE = -DSQLITE_THREADSAFE=1
#THREADSAFE = -DSQLITE_THREADSAFE=0
#### Specify any extra linker options needed to make the library
# thread safe
#
#THREADLIB = -lpthread
THREADLIB =
#### Specify any extra libraries needed to access required functions.
#
#TLIBS = -lrt # fdatasync on Solaris 8
TLIBS =
#### Leave SQLITE_DEBUG undefined for maximum speed. Use SQLITE_DEBUG=1
# to check for memory leaks. Use SQLITE_DEBUG=2 to print a log of all
# malloc()s and free()s in order to track down memory leaks.
#
# SQLite uses some expensive assert() statements in the inner loop.
# You can make the library go almost twice as fast if you compile
# with -DNDEBUG=1
#
#OPTS = -DSQLITE_DEBUG=2
#OPTS = -DSQLITE_DEBUG=1
#OPTS =
OPTS = -DNDEBUG=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_FTS3=1 \
-DSQLITE_ENABLE_MEMSYS5=1 \
-DWIN32=1 -DSQLITE_OS_WIN=1 $(THREADSAFE)
#OPTS += -DHAVE_FDATASYNC=1
#### The suffix to add to executable files. ".exe" for windows.
# Nothing for unix.
#
EXE = .exe
#EXE =
#### C Compile and options for use in building executables that
# will run on the target platform. This is usually the same
# as BCC, unless you are cross-compiling.
#
#TCC = gcc -O6
#TCC = gcc -g -O0 -Wall
#TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage
TCC = /opt/mingw/bin/i386-mingw32msvc-gcc -O2 -D_OFF_T_ -DNO_TCL
#TCC = /opt/ansic/bin/c89 -O +z -Wl,-a,archive
#### Tools used to build a static library.
#
#AR = ar cr
AR = /opt/mingw/bin/i386-mingw32msvc-ar cr
#RANLIB = ranlib
RANLIB = /opt/mingw/bin/i386-mingw32msvc-ranlib
# MKSHLIB = gcc -shared
# SO = so
# SHPREFIX = lib
MKSHLIB = /opt/mingw/bin/i386-mingw32msvc-ar -shared
SO = dll
SHPREFIX =
#### Extra compiler options needed for programs that use the TCL library.
#
TCL_FLAGS =
#TCL_FLAGS = -DSTATIC_BUILD=1
#TCL_FLAGS = -I/home/drh/tcltk/8.4linux
#TCL_FLAGS = -I/home/drh/tcltk/8.4win -DSTATIC_BUILD=1
#TCL_FLAGS = -I/home/drh/tcltk/8.3hpux
#### Linker options needed to link against the TCL library.
#
LIBTCL =
#LIBTCL = -ltcl -lm -ldl
#LIBTCL = /home/drh/tcltk/8.4linux/libtcl8.4g.a -lm -ldl
#LIBTCL = /home/drh/tcltk/8.4win/libtcl84s.a -lmsvcrt
#LIBTCL = /home/drh/tcltk/8.3hpux/libtcl8.3.a -ldld -lm -lc
#### Compiler options needed for programs that use the readline() library.
#
READLINE_FLAGS =
#READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline
#### Linker options needed by programs using readline() must link against.
#
LIBREADLINE =
#LIBREADLINE = -static -lreadline -ltermcap
#### Which "awk" program provides nawk compatibilty
#
# NAWK = nawk
NAWK = awk
# This is how we compile
#
TCCX = $(TCC) $(OPTS) $(THREADSAFE) $(USLEEP) -I. -I$(TOP) -I$(TOP)/src
# Object files for FTS1
#
FTS1OBJ+= fts1.o fts1_hash.o fts1_porter.o fts1_tokenizer1.o
# Object files for FTS2
#
FTS2OBJ+= fts2.o fts2_hash.o fts2_porter.o fts2_tokenizer1.o
# Object files for FTS3
#
FTS3OBJ+= fts3.o fts3_hash.o fts3_porter.o fts3_tokenizer.o fts3_tokenizer1.o \
fts3_expr.o fts3_icu.o fts3_snippet.o fts3_write.o fts3_aux.o
# FTS1 source code files.
#
FTS1SRC += \
$(TOP)/ext/fts1/fts1.c \
$(TOP)/ext/fts1/fts1.h \
$(TOP)/ext/fts1/fts1_hash.c \
$(TOP)/ext/fts1/fts1_hash.h \
$(TOP)/ext/fts1/fts1_porter.c \
$(TOP)/ext/fts1/fts1_tokenizer.h \
$(TOP)/ext/fts1/fts1_tokenizer1.c
# FTS2 source code files.
#
FTS2SRC += \
$(TOP)/ext/fts2/fts2.c \
$(TOP)/ext/fts2/fts2.h \
$(TOP)/ext/fts2/fts2_hash.c \
$(TOP)/ext/fts2/fts2_hash.h \
$(TOP)/ext/fts2/fts2_porter.c \
$(TOP)/ext/fts2/fts2_tokenizer.h \
$(TOP)/ext/fts2/fts2_tokenizer1.c
# FTS3 source code files.
#
FTS3SRC += \
$(TOP)/ext/fts3/fts3.c \
$(TOP)/ext/fts3/fts3.h \
$(TOP)/ext/fts3/fts3_hash.c \
$(TOP)/ext/fts3/fts3_hash.h \
$(TOP)/ext/fts3/fts3_porter.c \
$(TOP)/ext/fts3/fts3_tokenizer.h \
$(TOP)/ext/fts3/fts3_tokenizer1.c \
$(TOP)/ext/fts3/fts3_expr.c \
$(TOP)/ext/fts3/fts3_icu.c \
$(TOP)/ext/fts3/fts3_snippet.c \
$(TOP)/ext/fts3/fts3_write.c \
$(TOP)/ext/fts3/fts3_aux.c
# Common headers
HDR += $(TOP)/sqlite3.h \
$(TOP)/src/sqlite3ext.h
# Header files used by FTS1
#
FTS1HDR += \
$(TOP)/ext/fts1/fts1.h \
$(TOP)/ext/fts1/fts1_hash.h \
$(TOP)/ext/fts1/fts1_tokenizer.h
# Header files used by FTS2
#
FTS1HDR += \
$(TOP)/ext/fts2/fts2.h \
$(TOP)/ext/fts2/fts2_hash.h \
$(TOP)/ext/fts2/fts2_tokenizer.h
# Header files used by FTS3
#
FTS3HDR += \
$(TOP)/ext/fts3/fts3.h \
$(TOP)/ext/fts3/fts3_hash.h \
$(TOP)/ext/fts3/fts3_tokenizer.h \
$(TOP)/ext/fts3/fts3Int.h
# This is the default Makefile target. The objects listed here
# are what get build when you type just "make" with no arguments.
#
# SQLite 3.4.*
#all: sqlite3_mod_fts1.$(SO) sqlite3_mod_fts2.$(SO)
# SQLite 3.5.*
all: sqlite3_mod_fts3.$(SO)
# Rules to build individual files
#
fts1.o: $(TOP)/ext/fts1/fts1.c $(FTS1HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts1/fts1.c
fts1_hash.o: $(TOP)/ext/fts1/fts1_hash.c $(FTS1HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts1/fts1_hash.c
fts1_porter.o: $(TOP)/ext/fts1/fts1_porter.c $(FTS1HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts1/fts1_porter.c
fts1_tokenizer1.o: $(TOP)/ext/fts1/fts1_tokenizer1.c $(FTS1HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts1/fts1_tokenizer1.c
sqlite3_mod_fts1.$(SO): $(FTS1OBJ)
$(TCCX) -shared -Wl,--kill-at \
-Wl,-out-implib,libsqlite3fts1.a -Wl,--strip-all \
-o sqlite3_mod_fts1.$(SO) $(FTS1OBJ)
fts2.o: $(TOP)/ext/fts2/fts2.c $(FTS2HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts2/fts2.c
fts2_hash.o: $(TOP)/ext/fts2/fts2_hash.c $(FTS2HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts2/fts2_hash.c
fts2_porter.o: $(TOP)/ext/fts2/fts2_porter.c $(FTS2HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts2/fts2_porter.c
fts2_tokenizer1.o: $(TOP)/ext/fts2/fts2_tokenizer1.c $(FTS2HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts2/fts2_tokenizer1.c
sqlite3_mod_fts2.$(SO): $(FTS2OBJ)
$(TCCX) -shared -Wl,--kill-at \
-Wl,-out-implib,libsqlite3fts2.a -Wl,--strip-all \
-o sqlite3_mod_fts2.$(SO) $(FTS2OBJ)
fts3.o: $(TOP)/ext/fts3/fts3.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3.c
fts3_hash.o: $(TOP)/ext/fts3/fts3_hash.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_hash.c
fts3_porter.o: $(TOP)/ext/fts2/fts2_porter.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_porter.c
fts3_tokenizer.o: $(TOP)/ext/fts3/fts3_tokenizer.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_tokenizer.c
fts3_tokenizer1.o: $(TOP)/ext/fts3/fts3_tokenizer1.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_tokenizer1.c
fts3_expr.o: $(TOP)/ext/fts3/fts3_expr.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_expr.c
fts3_icu.o: $(TOP)/ext/fts3/fts3_icu.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_icu.c
fts3_write.o: $(TOP)/ext/fts3/fts3_write.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_write.c
fts3_snippet.o: $(TOP)/ext/fts3/fts3_snippet.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_snippet.c
fts3_aux.o: $(TOP)/ext/fts3/fts3_aux.c $(FTS3HDR) $(HDR)
$(TCCX) -c $(TOP)/ext/fts3/fts3_aux.c
sqlite3_mod_fts3.$(SO): $(FTS3OBJ)
$(TCCX) -shared -Wl,--kill-at \
-Wl,-out-implib,libsqlite3fts3.a -Wl,--strip-all \
-o sqlite3_mod_fts3.$(SO) $(FTS3OBJ)
clean:
rm -f $(FTS1OBJ) libsqlite3fts1.a sqlite3_mod_fts1.$(SO)
rm -f $(FTS2OBJ) libsqlite3fts2.a sqlite3_mod_fts2.$(SO)
rm -f $(FTS3OBJ) libsqlite3fts3.a sqlite3_mod_fts3.$(SO)
|