80 $(SRCDIR)/os.c \
81 $(SRCDIR)/pager.c \
82 $(SRCDIR)/pragma.c \
83 $(SRCDIR)/printf.c \
84 $(SRCDIR)/random.c \
85 $(SRCDIR)/select.c \
86 $(SRCDIR)/table.c \
87 $(SRCDIR)/tokenize.c \
88 $(SRCDIR)/update.c \
89 $(SRCDIR)/util.c \
90 $(SRCDIR)/vacuum.c \
91 $(SRCDIR)/vdbe.c \
92 $(SRCDIR)/vdbeaux.c \
93 $(SRCDIR)/where.c \
94 $(SRCDIR)/trigger.c
95
96 MYCPPFLAGS = -D_REENTRANT -DTHREADSAFE=1 -DHAVE_USLEEP=1 -I. -I.. -I$(SRCDIR)
97 CPPFLAGS += $(MYCPPFLAGS)
98
99 CERRWARN += -_gcc=-Wno-implicit-function-declaration
100 CERRWARN += -_gcc=-Wno-uninitialized
101 CERRWARN += -_gcc=-Wno-unused-function
102 CERRWARN += -_gcc=-Wno-unused-label
103
104 # not linted
105 SMATCH=off
106
107 MAPFILES = ../mapfile-sqlite
108
109 # headers generated here
110 GENHDR = opcodes.h parse.h
111
112 # Header files used by all library source files.
113 #
114 HDR = \
115 $(GENHDR) \
116 $(SRCDIR)/btree.h \
117 $(SRCDIR)/config.h \
118 $(SRCDIR)/hash.h \
119 $(SRCDIR)/os.h \
120 ../sqlite.h \
|
80 $(SRCDIR)/os.c \
81 $(SRCDIR)/pager.c \
82 $(SRCDIR)/pragma.c \
83 $(SRCDIR)/printf.c \
84 $(SRCDIR)/random.c \
85 $(SRCDIR)/select.c \
86 $(SRCDIR)/table.c \
87 $(SRCDIR)/tokenize.c \
88 $(SRCDIR)/update.c \
89 $(SRCDIR)/util.c \
90 $(SRCDIR)/vacuum.c \
91 $(SRCDIR)/vdbe.c \
92 $(SRCDIR)/vdbeaux.c \
93 $(SRCDIR)/where.c \
94 $(SRCDIR)/trigger.c
95
96 MYCPPFLAGS = -D_REENTRANT -DTHREADSAFE=1 -DHAVE_USLEEP=1 -I. -I.. -I$(SRCDIR)
97 CPPFLAGS += $(MYCPPFLAGS)
98
99 CERRWARN += -_gcc=-Wno-implicit-function-declaration
100 CERRWARN += $(CNOWARN_UNINIT)
101 CERRWARN += -_gcc=-Wno-unused-function
102 CERRWARN += -_gcc=-Wno-unused-label
103
104 # not linted
105 SMATCH=off
106
107 MAPFILES = ../mapfile-sqlite
108
109 # headers generated here
110 GENHDR = opcodes.h parse.h
111
112 # Header files used by all library source files.
113 #
114 HDR = \
115 $(GENHDR) \
116 $(SRCDIR)/btree.h \
117 $(SRCDIR)/config.h \
118 $(SRCDIR)/hash.h \
119 $(SRCDIR)/os.h \
120 ../sqlite.h \
|