xref: /illumos-gate/usr/src/lib/libsqlite/Makefile.com (revision 33efde4275d24731ef87927237b0ffb0630b6b2d)
1#
2# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
3# Use is subject to license terms.
4# Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
5# Copyright 2016 Nexenta Systems, Inc.  All rights reserved.
6# Copyright (c) 2019, Joyent, Inc.
7# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
8#
9
10# Make the SO name unlikely to conflict with any other
11# libsqlite that might also be found on the system.
12LIBRARY = libsqlite-sys.a
13
14VERS = .2.8.15
15OBJECTS = \
16	attach.o	\
17	auth.o		\
18	btree.o		\
19	btree_rb.o	\
20	build.o		\
21	copy.o		\
22	date.o		\
23	delete.o	\
24	encode.o	\
25	expr.o		\
26	func.o		\
27	hash.o		\
28	insert.o	\
29	main.o		\
30	opcodes.o	\
31	os.o		\
32	pager.o		\
33	parse.o		\
34	pragma.o	\
35	printf.o	\
36	random.o	\
37	select.o	\
38	table.o		\
39	tokenize.o	\
40	trigger.o	\
41	update.o	\
42	util.o		\
43	vacuum.o	\
44	vdbe.o		\
45	vdbeaux.o	\
46	where.o
47
48include $(SRC)/lib/Makefile.lib
49
50# install this library in the root filesystem
51include $(SRC)/lib/Makefile.rootfs
52
53SRCDIR = ../src
54TOOLDIR = ../tool
55$(DYNLIB) := LDLIBS += -lc
56
57LIBS = $(DYNLIB)
58
59# generated sources
60GENSRC = opcodes.c parse.c
61
62# all sources
63SRCS = \
64	$(GENSRC) \
65	$(SRCDIR)/attach.c	\
66	$(SRCDIR)/auth.c	\
67	$(SRCDIR)/btree.c	\
68	$(SRCDIR)/btree_rb.c	\
69	$(SRCDIR)/build.c	\
70	$(SRCDIR)/copy.c	\
71	$(SRCDIR)/date.c	\
72	$(SRCDIR)/delete.c	\
73	$(SRCDIR)/encode.c	\
74	$(SRCDIR)/expr.c	\
75	$(SRCDIR)/func.c	\
76	$(SRCDIR)/hash.c	\
77	$(SRCDIR)/insert.c	\
78	$(SRCDIR)/main.c	\
79	$(SRCDIR)/os.c		\
80	$(SRCDIR)/pager.c	\
81	$(SRCDIR)/pragma.c	\
82	$(SRCDIR)/printf.c	\
83	$(SRCDIR)/random.c	\
84	$(SRCDIR)/select.c	\
85	$(SRCDIR)/table.c	\
86	$(SRCDIR)/tokenize.c	\
87	$(SRCDIR)/update.c	\
88	$(SRCDIR)/util.c	\
89	$(SRCDIR)/vacuum.c	\
90	$(SRCDIR)/vdbe.c	\
91	$(SRCDIR)/vdbeaux.c	\
92	$(SRCDIR)/where.c	\
93	$(SRCDIR)/trigger.c
94
95MYCPPFLAGS = -D_REENTRANT -DTHREADSAFE=1 -DHAVE_USLEEP=1 -I. -I.. -I$(SRCDIR)
96CPPFLAGS += $(MYCPPFLAGS)
97
98CERRWARN += -_gcc=-Wno-implicit-function-declaration
99CERRWARN += $(CNOWARN_UNINIT)
100CERRWARN += -_gcc=-Wno-unused-function
101
102# not linted
103SMATCH=off
104
105MAPFILES = $(SRC)/lib/libsqlite/mapfile-sqlite
106
107# headers generated here
108GENHDR = opcodes.h parse.h
109
110# Header files used by all library source files.
111#
112HDR = \
113	$(GENHDR) \
114	$(SRCDIR)/btree.h	\
115	$(SRCDIR)/config.h	\
116	$(SRCDIR)/hash.h	\
117	$(SRCDIR)/os.h		\
118	../sqlite.h		\
119	$(SRCDIR)/sqliteInt.h	\
120	$(SRCDIR)/vdbe.h	\
121	$(SRCDIR)/vdbeInt.h
122
123#
124# Sources used for test harness
125#
126TESTSRC = \
127	$(SRCDIR)/tclsqlite.c	\
128	$(SRCDIR)/btree.c	\
129	$(SRCDIR)/func.c	\
130	$(SRCDIR)/os.c		\
131	$(SRCDIR)/pager.c	\
132	$(SRCDIR)/test1.c	\
133	$(SRCDIR)/test2.c	\
134	$(SRCDIR)/test3.c	\
135	$(SRCDIR)/md5.c
136
137TESTOBJS = $(TESTSRC:$(SRCDIR)/%.c=%.o)
138
139TESTCLEAN = $(TESTOBJS) test.db test.tcl test1.bt test2.db testdb
140
141TCLBASE = /usr/sfw
142TCLVERS = tcl8.3
143
144testfixture := MYCPPFLAGS += -I$(TCLBASE)/include -DTCLSH -DSQLITE_TEST=1
145
146testfixture := LDLIBS += -R$(TCLBASE)/lib -L$(TCLBASE)/lib -l$(TCLVERS) -lm -ldl
147
148CLEANFILES += \
149	$(TESTCLEAN)	\
150	lemon		\
151	lemon.o		\
152	lempar.c	\
153	opcodes.c	\
154	opcodes.h	\
155	parse_tmp.c	\
156	parse_tmp.h	\
157	parse_tmp.out	\
158	parse_tmp.y	\
159	parse.c		\
160	parse.h
161
162ENCODING  = ISO8859
163
164.PARALLEL: $(OBJS) $(PICS)
165.KEEP_STATE:
166
167# This is the default Makefile target.  The objects listed here
168# are what get build when you type just "make" with no arguments.
169#
170all:		$(LIBS)
171install:	all
172
173all_h: $(GENHDR)
174
175$(ROOTLINK): $(ROOTLIBDIR) $(ROOTLIBDIR)/$(DYNLIB)
176	$(INS.liblink)
177