blob: d8e0c56bea708f0391323f6f267be425e22946e1 [file] [log] [blame]
drh71eb93e2001-09-28 01:34:43 +00001###############################################################################
drh76800322002-08-13 20:45:39 +00002# The following macros should be defined before this script is
3# invoked:
4#
5# TOP The toplevel directory of the source tree. This is the
6# directory that contains this "Makefile.in" and the
7# "configure.in" script.
8#
9# BCC C Compiler and options for use in building executables that
10# will run on the platform that is doing the build.
11#
12# USLEEP If the target operating system supports the "usleep()" system
13# call, then define the HAVE_USLEEP macro for all C modules.
14#
15# THREADSAFE If you want the SQLite library to be safe for use within a
16# multi-threaded program, then define the following macro
17# appropriately:
18#
19# THREADLIB Specify any extra linker options needed to make the library
20# thread safe
21#
22# OPTS Extra compiler command-line options.
23#
24# EXE The suffix to add to executable files. ".exe" for windows
25# and "" for Unix.
26#
27# TCC C Compiler and options for use in building executables that
28# will run on the target platform. This is usually the same
29# as BCC, unless you are cross-compiling.
30#
31# AR Tools used to build a static library.
32# RANLIB
33#
34# TCL_FLAGS Extra compiler options needed for programs that use the
35# TCL library.
36#
37# LIBTCL Linker options needed to link against the TCL library.
38#
39# READLINE_FLAGS Compiler options needed for programs that use the
40# readline() library.
41#
42# LIBREADLINE Linker options needed by programs using readline() must
43# link against.
44#
45# ENCODING "UTF8" or "ISO8859"
46#
47# Once the macros above are defined, the rest of this make script will
48# build the SQLite library and testing tools.
49################################################################################
drh71eb93e2001-09-28 01:34:43 +000050
51# This is how we compile
52#
drha297b5c2002-01-15 18:39:43 +000053TCCX = $(TCC) $(OPTS) $(THREADSAFE) $(USLEEP) -I. -I$(TOP)/src
drh71eb93e2001-09-28 01:34:43 +000054
55# Object files for the SQLite library.
56#
drhed6c8672003-01-12 18:02:16 +000057LIBOBJ = auth.o btree.o build.o delete.o expr.o func.o hash.o insert.o \
drh58f391b2002-11-20 11:55:18 +000058 main.o opcodes.o os.o pager.o parse.o printf.o random.o \
59 select.o table.o tokenize.o trigger.o update.o util.o \
60 vdbe.o where.o tclsqlite.o
drh71eb93e2001-09-28 01:34:43 +000061
62# All of the source code files.
63#
64SRC = \
drhed6c8672003-01-12 18:02:16 +000065 $(TOP)/src/auth.c \
drh71eb93e2001-09-28 01:34:43 +000066 $(TOP)/src/btree.c \
67 $(TOP)/src/btree.h \
68 $(TOP)/src/build.c \
69 $(TOP)/src/delete.c \
70 $(TOP)/src/expr.c \
drhdc04c582002-02-24 01:55:15 +000071 $(TOP)/src/func.c \
drh71eb93e2001-09-28 01:34:43 +000072 $(TOP)/src/hash.c \
73 $(TOP)/src/hash.h \
74 $(TOP)/src/insert.c \
75 $(TOP)/src/main.c \
76 $(TOP)/src/os.c \
77 $(TOP)/src/pager.c \
78 $(TOP)/src/pager.h \
79 $(TOP)/src/parse.y \
80 $(TOP)/src/printf.c \
81 $(TOP)/src/random.c \
82 $(TOP)/src/select.c \
83 $(TOP)/src/shell.c \
84 $(TOP)/src/sqlite.h.in \
85 $(TOP)/src/sqliteInt.h \
86 $(TOP)/src/table.c \
87 $(TOP)/src/tclsqlite.c \
88 $(TOP)/src/tokenize.c \
drhdc379452002-05-15 12:45:43 +000089 $(TOP)/src/trigger.c \
drh71eb93e2001-09-28 01:34:43 +000090 $(TOP)/src/update.c \
91 $(TOP)/src/util.c \
92 $(TOP)/src/vdbe.c \
93 $(TOP)/src/vdbe.h \
94 $(TOP)/src/where.c
95
96# Source code to the test files.
97#
98TESTSRC = \
99 $(TOP)/src/btree.c \
drh74587e52002-08-13 00:01:16 +0000100 $(TOP)/src/func.c \
drh81a20f22001-10-12 17:30:04 +0000101 $(TOP)/src/os.c \
drh71eb93e2001-09-28 01:34:43 +0000102 $(TOP)/src/pager.c \
103 $(TOP)/src/test1.c \
104 $(TOP)/src/test2.c \
105 $(TOP)/src/test3.c \
106 $(TOP)/src/md5.c
107
108# Header files used by all library source files.
109#
110HDR = \
111 sqlite.h \
112 $(TOP)/src/btree.h \
drh58f391b2002-11-20 11:55:18 +0000113 config.h \
drh71eb93e2001-09-28 01:34:43 +0000114 $(TOP)/src/hash.h \
drh8f619cc2002-09-08 00:04:50 +0000115 opcodes.h \
drh71eb93e2001-09-28 01:34:43 +0000116 $(TOP)/src/os.h \
117 $(TOP)/src/sqliteInt.h \
118 $(TOP)/src/vdbe.h \
119 parse.h
120
121# This is the default Makefile target. The objects listed here
122# are what get build when you type just "make" with no arguments.
123#
drh58f391b2002-11-20 11:55:18 +0000124all: sqlite.h config.h libsqlite.a sqlite$(EXE)
drh71eb93e2001-09-28 01:34:43 +0000125
126# Generate the file "last_change" which contains the date of change
127# of the most recently modified source code file
128#
129last_change: $(SRC)
130 cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
131 | awk '{print $$5,$$6}' >last_change
132
drh4b59ab52002-08-24 18:24:51 +0000133libsqlite.a: $(LIBOBJ)
134 $(AR) libsqlite.a $(LIBOBJ)
drh71eb93e2001-09-28 01:34:43 +0000135 $(RANLIB) libsqlite.a
136
137sqlite$(EXE): $(TOP)/src/shell.c libsqlite.a sqlite.h
138 $(TCCX) $(READLINE_FLAGS) -o sqlite$(EXE) $(TOP)/src/shell.c \
drha297b5c2002-01-15 18:39:43 +0000139 libsqlite.a $(LIBREADLINE) $(THREADLIB)
drh71eb93e2001-09-28 01:34:43 +0000140
141# This target creates a directory named "tsrc" and fills it with
142# copies of all of the C source code and header files needed to
143# build on the target system. Some of the C source code and header
144# files are automatically generated. This target takes care of
145# all that automatic generation.
146#
drhac82fcf2002-09-08 17:23:41 +0000147target_source: $(SRC) $(HDR) opcodes.c
drh71eb93e2001-09-28 01:34:43 +0000148 rm -rf tsrc
149 mkdir tsrc
150 cp $(SRC) $(HDR) tsrc
151 rm tsrc/sqlite.h.in tsrc/parse.y
drhac82fcf2002-09-08 17:23:41 +0000152 cp parse.c opcodes.c tsrc
drh71eb93e2001-09-28 01:34:43 +0000153
154# Rules to build the LEMON compiler generator
155#
156lemon: $(TOP)/tool/lemon.c $(TOP)/tool/lempar.c
157 $(BCC) -o lemon $(TOP)/tool/lemon.c
158 cp $(TOP)/tool/lempar.c .
159
160btree.o: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
161 $(TCCX) -c $(TOP)/src/btree.c
162
163build.o: $(TOP)/src/build.c $(HDR)
164 $(TCCX) -c $(TOP)/src/build.c
165
166main.o: $(TOP)/src/main.c $(HDR)
167 $(TCCX) -c $(TOP)/src/main.c
168
169pager.o: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
170 $(TCCX) -c $(TOP)/src/pager.c
171
drh8f619cc2002-09-08 00:04:50 +0000172opcodes.o: opcodes.c
173 $(TCCX) -c opcodes.c
174
175opcodes.c: $(TOP)/src/vdbe.c
176 echo '/* Automatically generated file. Do not edit */' >opcodes.c
177 echo 'char *sqliteOpcodeNames[] = { "???", ' >>opcodes.c
178 grep '^case OP_' $(TOP)/src/vdbe.c | \
179 sed -e 's/^.*OP_/ "/' -e 's/:.*$$/", /' >>opcodes.c
180 echo '};' >>opcodes.c
181
182opcodes.h: $(TOP)/src/vdbe.h
183 echo '/* Automatically generated file. Do not edit */' >opcodes.h
184 grep '^case OP_' $(TOP)/src/vdbe.c | \
185 sed -e 's/://' | \
186 awk '{printf "#define %-30s %3d\n", $$2, ++cnt}' >>opcodes.h
187
drh71eb93e2001-09-28 01:34:43 +0000188os.o: $(TOP)/src/os.c $(HDR)
189 $(TCCX) -c $(TOP)/src/os.c
190
191parse.o: parse.c $(HDR)
192 $(TCCX) -c parse.c
193
194parse.h: parse.c
195
196parse.c: $(TOP)/src/parse.y lemon
197 cp $(TOP)/src/parse.y .
198 ./lemon parse.y
199
drh58f391b2002-11-20 11:55:18 +0000200# The config.h file will contain a single #define that tells us how
201# many bytes are in a pointer. This only works if a pointer is the
202# same size on the host as it is on the target. If you are cross-compiling
203# to a target with a different pointer size, you'll need to manually
204# configure the config.h file.
205#
206config.h:
207 echo '#include <stdio.h>' >temp.c
208 echo 'int main(){printf(' >>temp.c
209 echo '"#define SQLITE_PTR_SZ %d\n",sizeof(char*));' >>temp.c
210 echo 'exit(0);}' >>temp.c
211 $(BCC) -o temp temp.c
212 ./temp >config.h
213 rm -f temp.c temp
214
drh71eb93e2001-09-28 01:34:43 +0000215sqlite.h: $(TOP)/src/sqlite.h.in
216 sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \
217 -e s/--ENCODING--/$(ENCODING)/ \
218 $(TOP)/src/sqlite.h.in >sqlite.h
219
220tokenize.o: $(TOP)/src/tokenize.c $(HDR)
221 $(TCCX) -c $(TOP)/src/tokenize.c
222
drhdc379452002-05-15 12:45:43 +0000223trigger.o: $(TOP)/src/trigger.c $(HDR)
224 $(TCCX) -c $(TOP)/src/trigger.c
225
drh71eb93e2001-09-28 01:34:43 +0000226util.o: $(TOP)/src/util.c $(HDR)
227 $(TCCX) -c $(TOP)/src/util.c
228
229vdbe.o: $(TOP)/src/vdbe.c $(HDR)
230 $(TCCX) -c $(TOP)/src/vdbe.c
231
232where.o: $(TOP)/src/where.c $(HDR)
233 $(TCCX) -c $(TOP)/src/where.c
234
235delete.o: $(TOP)/src/delete.c $(HDR)
236 $(TCCX) -c $(TOP)/src/delete.c
237
238expr.o: $(TOP)/src/expr.c $(HDR)
239 $(TCCX) -c $(TOP)/src/expr.c
240
drhdc04c582002-02-24 01:55:15 +0000241func.o: $(TOP)/src/func.c $(HDR)
242 $(TCCX) -c $(TOP)/src/func.c
243
drh71eb93e2001-09-28 01:34:43 +0000244hash.o: $(TOP)/src/hash.c $(HDR)
245 $(TCCX) -c $(TOP)/src/hash.c
246
247insert.o: $(TOP)/src/insert.c $(HDR)
248 $(TCCX) -c $(TOP)/src/insert.c
249
250random.o: $(TOP)/src/random.c $(HDR)
251 $(TCCX) -c $(TOP)/src/random.c
252
253select.o: $(TOP)/src/select.c $(HDR)
254 $(TCCX) -c $(TOP)/src/select.c
255
256table.o: $(TOP)/src/table.c $(HDR)
257 $(TCCX) -c $(TOP)/src/table.c
258
259update.o: $(TOP)/src/update.c $(HDR)
260 $(TCCX) -c $(TOP)/src/update.c
261
262tclsqlite.o: $(TOP)/src/tclsqlite.c $(HDR)
263 $(TCCX) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
264
265printf.o: $(TOP)/src/printf.c $(HDR)
266 $(TCCX) $(TCL_FLAGS) -c $(TOP)/src/printf.c
267
drhed6c8672003-01-12 18:02:16 +0000268auth.o: $(TOP)/src/auth.c $(HDR)
269 $(TCCX) -c $(TOP)/src/auth.c
270
drh71eb93e2001-09-28 01:34:43 +0000271tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.a
272 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 -o tclsqlite \
273 $(TOP)/src/tclsqlite.c libsqlite.a $(LIBTCL)
274
275testfixture$(EXE): $(TOP)/src/tclsqlite.c libsqlite.a $(TESTSRC)
276 $(TCCX) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1 -o testfixture$(EXE) \
277 $(TESTSRC) $(TOP)/src/tclsqlite.c \
278 libsqlite.a $(LIBTCL)
279
280fulltest: testfixture$(EXE) sqlite$(EXE)
281 ./testfixture$(EXE) $(TOP)/test/all.test
282
283test: testfixture$(EXE) sqlite$(EXE)
284 ./testfixture$(EXE) $(TOP)/test/quick.test
285
drh90ca9752001-09-28 17:47:14 +0000286index.html: $(TOP)/www/index.tcl last_change
drh71eb93e2001-09-28 01:34:43 +0000287 tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
288
289sqlite.html: $(TOP)/www/sqlite.tcl
290 tclsh $(TOP)/www/sqlite.tcl >sqlite.html
291
292c_interface.html: $(TOP)/www/c_interface.tcl
293 tclsh $(TOP)/www/c_interface.tcl >c_interface.html
294
295changes.html: $(TOP)/www/changes.tcl
296 tclsh $(TOP)/www/changes.tcl >changes.html
297
298lang.html: $(TOP)/www/lang.tcl
299 tclsh $(TOP)/www/lang.tcl >lang.html
300
301vdbe.html: $(TOP)/www/vdbe.tcl
302 tclsh $(TOP)/www/vdbe.tcl >vdbe.html
303
304arch.html: $(TOP)/www/arch.tcl
305 tclsh $(TOP)/www/arch.tcl >arch.html
306
307arch.png: $(TOP)/www/arch.png
308 cp $(TOP)/www/arch.png .
309
310opcode.html: $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
311 tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
312
drh71eb93e2001-09-28 01:34:43 +0000313mingw.html: $(TOP)/www/mingw.tcl
314 tclsh $(TOP)/www/mingw.tcl >mingw.html
315
316tclsqlite.html: $(TOP)/www/tclsqlite.tcl
317 tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
318
319speed.html: $(TOP)/www/speed.tcl
320 tclsh $(TOP)/www/speed.tcl >speed.html
321
drh7a7c7392001-11-24 00:31:46 +0000322faq.html: $(TOP)/www/faq.tcl
323 tclsh $(TOP)/www/faq.tcl >faq.html
324
drhe7ec2202001-12-22 19:27:39 +0000325formatchng.html: $(TOP)/www/formatchng.tcl
326 tclsh $(TOP)/www/formatchng.tcl >formatchng.html
327
drhb419a922002-01-30 16:17:23 +0000328conflict.html: $(TOP)/www/conflict.tcl
329 tclsh $(TOP)/www/conflict.tcl >conflict.html
330
drh90ca9752001-09-28 17:47:14 +0000331download.html: $(TOP)/www/download.tcl
332 tclsh $(TOP)/www/download.tcl >download.html
333
drh76800322002-08-13 20:45:39 +0000334omitted.html: $(TOP)/www/omitted.tcl
335 tclsh $(TOP)/www/omitted.tcl >omitted.html
336
drhfbe43752002-08-14 00:08:12 +0000337datatypes.html: $(TOP)/www/datatypes.tcl
338 tclsh $(TOP)/www/datatypes.tcl >datatypes.html
339
drhc2774132002-08-15 13:45:17 +0000340quickstart.html: $(TOP)/www/quickstart.tcl
341 tclsh $(TOP)/www/quickstart.tcl >quickstart.html
342
drhd8acdb32002-08-18 19:09:22 +0000343fileformat.html: $(TOP)/www/fileformat.tcl
344 tclsh $(TOP)/www/fileformat.tcl >fileformat.html
345
drh96f45312002-09-02 14:11:02 +0000346nulls.html: $(TOP)/www/nulls.tcl
347 tclsh $(TOP)/www/nulls.tcl >nulls.html
348
drh71eb93e2001-09-28 01:34:43 +0000349
350# Files to be published on the website.
351#
drh90ca9752001-09-28 17:47:14 +0000352DOC = \
drh71eb93e2001-09-28 01:34:43 +0000353 index.html \
354 sqlite.html \
355 changes.html \
356 lang.html \
357 opcode.html \
358 arch.html \
359 arch.png \
360 vdbe.html \
361 c_interface.html \
drh71eb93e2001-09-28 01:34:43 +0000362 mingw.html \
363 tclsqlite.html \
drh90ca9752001-09-28 17:47:14 +0000364 download.html \
drh7a7c7392001-11-24 00:31:46 +0000365 speed.html \
drhe7ec2202001-12-22 19:27:39 +0000366 faq.html \
drhb419a922002-01-30 16:17:23 +0000367 formatchng.html \
drh76800322002-08-13 20:45:39 +0000368 conflict.html \
drhfbe43752002-08-14 00:08:12 +0000369 omitted.html \
drhc2774132002-08-15 13:45:17 +0000370 datatypes.html \
drhd8acdb32002-08-18 19:09:22 +0000371 quickstart.html \
drh96f45312002-09-02 14:11:02 +0000372 fileformat.html \
373 nulls.html
drh71eb93e2001-09-28 01:34:43 +0000374
drh90ca9752001-09-28 17:47:14 +0000375doc: $(DOC)
376 mkdir -p doc
377 mv $(DOC) doc
drh71eb93e2001-09-28 01:34:43 +0000378
379install: sqlite libsqlite.a sqlite.h
380 mv sqlite /usr/bin
381 mv libsqlite.a /usr/lib
382 mv sqlite.h /usr/include
383
384clean:
drh8f619cc2002-09-08 00:04:50 +0000385 rm -f *.o sqlite libsqlite.a sqlite.h opcodes.*
drh90ca9752001-09-28 17:47:14 +0000386 rm -f lemon lempar.c parse.* sqlite*.tar.gz
drh71eb93e2001-09-28 01:34:43 +0000387 rm -f $(PUBLISH)
388 rm -f *.da *.bb *.bbg gmon.out
389 rm -rf tsrc