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 56LIBS = $(DYNLIB) $(NATIVERELOC) 57 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 101CERRWARN += -_gcc=-Wno-unused-label 102 103# not linted 104SMATCH=off 105 106MAPFILES = ../mapfile-sqlite 107 108# headers generated here 109GENHDR = opcodes.h parse.h 110 111# Header files used by all library source files. 112# 113HDR = \ 114 $(GENHDR) \ 115 $(SRCDIR)/btree.h \ 116 $(SRCDIR)/config.h \ 117 $(SRCDIR)/hash.h \ 118 $(SRCDIR)/os.h \ 119 ../sqlite.h \ 120 $(SRCDIR)/sqliteInt.h \ 121 $(SRCDIR)/vdbe.h \ 122 $(SRCDIR)/vdbeInt.h 123 124# 125# Sources used for test harness 126# 127TESTSRC = \ 128 $(SRCDIR)/tclsqlite.c \ 129 $(SRCDIR)/btree.c \ 130 $(SRCDIR)/func.c \ 131 $(SRCDIR)/os.c \ 132 $(SRCDIR)/pager.c \ 133 $(SRCDIR)/test1.c \ 134 $(SRCDIR)/test2.c \ 135 $(SRCDIR)/test3.c \ 136 $(SRCDIR)/md5.c 137 138TESTOBJS = $(TESTSRC:$(SRCDIR)/%.c=%.o) 139 140TESTCLEAN = $(TESTOBJS) test.db test.tcl test1.bt test2.db testdb 141 142# 143# Native variant (needed by cmd/configd) 144# 145NATIVERELOC = libsqlite-native.o 146NATIVEPROGS = testfixture 147NATIVEOBJS = $(OBJS:%.o=%-native.o) 148 149NATIVETARGETS = $(NATIVEPROGS) $(NATIVEOBJS) $(NATIVERELOC) 150 151$(NATIVETARGETS) := CC = $(NATIVECC) 152$(NATIVETARGETS) := LD = $(NATIVELD) 153$(NATIVETARGETS) := CFLAGS = $(NATIVE_CFLAGS) 154$(NATIVETARGETS) := CPPFLAGS = $(MYCPPFLAGS) 155$(NATIVETARGETS) := LDFLAGS = 156$(NATIVETARGETS) := LDLIBS = -lc 157 158$(OBJS) := CFLAGS += $(CTF_FLAGS) 159$(OBJS) := CTFCONVERT_POST = $(CTFCONVERT_O) 160$(NATIVEOBJS) := CFLAGS += $(CTF_FLAGS) 161$(NATIVEOBJS) := CTFCONVERT_POST = $(CTFCONVERT_O) 162 163TCLBASE = /usr/sfw 164TCLVERS = tcl8.3 165 166testfixture := MYCPPFLAGS += -I$(TCLBASE)/include -DTCLSH -DSQLITE_TEST=1 167# 168# work around compiler issues 169# 170testfixture := CFLAGS += \ 171 -erroff=E_ARRAY_OF_INCOMPLETE \ 172 -erroff=E_ARG_INCOMPATIBLE_WITH_ARG 173 174testfixture := LDLIBS += -R$(TCLBASE)/lib -L$(TCLBASE)/lib -l$(TCLVERS) -lm -ldl 175 176CLEANFILES += \ 177 $(NATIVETARGETS) \ 178 $(TESTCLEAN) \ 179 lemon \ 180 lemon.o \ 181 lempar.c \ 182 opcodes.c \ 183 opcodes.h \ 184 parse_tmp.c \ 185 parse_tmp.h \ 186 parse_tmp.out \ 187 parse_tmp.y \ 188 parse.c \ 189 parse.h 190 191ENCODING = ISO8859 192 193 194.PARALLEL: $(OBJS) $(OBJS:%.o=%-native.o) 195.KEEP_STATE: 196 197# This is the default Makefile target. The objects listed here 198# are what get build when you type just "make" with no arguments. 199# 200all: $(LIBS) 201install: all \ 202 $(ROOTLIBDIR)/$(DYNLIB) \ 203 $(ROOTLIBDIR)/$(NATIVERELOC) 204 205 206all_h: $(GENHDR) 207 208$(ROOTLIBDIR)/$(NATIVERELOC) := FILEMODE= 644 209 210$(ROOTLINK): $(ROOTLIBDIR) $(ROOTLIBDIR)/$(DYNLIB) 211 $(INS.liblink) 212 213native: $(NATIVERELOC) 214 215$(NATIVERELOC): objs .WAIT $(OBJS:%.o=%-native.o) 216 $(LD) -r -o $(NATIVERELOC) $(OBJS:%.o=%-native.o) 217 218opcodes.h: $(SRCDIR)/vdbe.c 219 @echo "Generating $@"; \ 220 $(RM) -f $@ ; \ 221 echo '/* Automatically generated file. Do not edit */' > $@ ; \ 222 grep '^case OP_' $(SRCDIR)/vdbe.c | \ 223 sed -e 's/://' | \ 224 $(AWK) '{printf "#define %-30s %3d\n", $$2, ++cnt}' >> $@ 225 226opcodes.c: $(SRCDIR)/vdbe.c 227 @echo "Generating $@"; \ 228 $(RM) -f $@ ; \ 229 echo '/* Automatically generated file. Do not edit */' > $@ ; \ 230 echo 'char *sqliteOpcodeNames[] = { "???", ' >> $@ ; \ 231 grep '^case OP_' $(SRCDIR)/vdbe.c | \ 232 sed -e 's/^.*OP_/ "/' -e 's/:.*$$/", /' >> $@ ; \ 233 echo '};' >> $@ 234 235testfixture: FRC 236 @if [ -f $(TCLBASE)/include/tcl.h ]; then \ 237 unset SUNPRO_DEPENDENCIES; \ 238 echo $(LINK.c) -o testfixture $(TESTSRC) $(LIBRARY) $(LDLIBS) ;\ 239 exec $(LINK.c) -o testfixture $(TESTSRC) $(LIBRARY) $(LDLIBS) ;\ 240 else \ 241 echo "$(TCLBASE)/include/tcl.h: not found."; \ 242 exit 1; \ 243 fi 244 245# Prevent Makefile.lib $(PICS) := from adding PICFLAGS 246# by building lemon in a recursive make invocation. 247# Otherwise, this target causes a rebuild every time after 248# the PICS target builds this one way, then lint the other. 249parse.h parse.c : $(SRCDIR)/parse.y $(TOOLDIR)/lemon.c $(TOOLDIR)/lempar.c 250 -$(RM) parse_tmp.y lempar.c 251 $(CP) $(SRCDIR)/parse.y parse_tmp.y 252 $(CP) $(TOOLDIR)/lempar.c lempar.c 253 $(MAKE) lemon 254 ./lemon parse_tmp.y 255 -$(RM) parse.c parse.h 256 $(CP) parse_tmp.h parse.h 257 $(CP) parse_tmp.c parse.c 258 259lemon: $(TOOLDIR)/lemon.c 260 $(NATIVECC) $(NATIVE_CFLAGS) -o $@ $(TOOLDIR)/lemon.c 261 262objs/%-native.o: $(SRCDIR)/%.c $(GENHDR) 263 $(COMPILE.c) -o $@ $< 264 $(POST_PROCESS_O) 265 266objs/%-native.o: %.c $(GENHDR) 267 $(COMPILE.c) -o $@ $< 268 $(POST_PROCESS_O) 269 270objs/parse-native.o: parse.c $(GENHDR) 271 $(COMPILE.c) -o $@ parse.c 272 $(POST_PROCESS_O) 273 274objs/%.o pics/%.o: $(SRCDIR)/%.c $(GENHDR) 275 $(COMPILE.c) -o $@ $< 276 $(POST_PROCESS_O) 277 278objs/%.o pics/%.o: %.c $(GENHDR) 279 $(COMPILE.c) -o $@ $< 280 $(POST_PROCESS_O) 281 282# need direct rules for generated files 283objs/opcodes.o pics/opcodes.o: opcodes.c $(GENHDR) 284 $(COMPILE.c) -o $@ opcodes.c 285 $(POST_PROCESS_O) 286 287objs/parse.o pics/parse.o: parse.c $(GENHDR) 288 $(COMPILE.c) -o $@ parse.c 289 $(POST_PROCESS_O) 290 291include $(SRC)/lib/Makefile.targ 292 293FRC: 294