1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add the Makefile.in that was forgotten with checkin #562 (CVS 563)

FossilOrigin-Name: 29b8330ca6bfe32c499a045189683100f2b15246
This commit is contained in:
danielk1977
2002-05-15 08:43:10 +00:00
parent c3f9bad209
commit b38f58b51a
3 changed files with 13 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ ENCODING = @ENCODING@
#
LIBOBJ = btree.lo build.lo delete.lo expr.lo func.lo hash.lo insert.lo \
main.lo os.lo pager.lo parse.lo printf.lo random.lo select.lo \
table.lo tokenize.lo update.lo util.lo vdbe.lo where.lo
table.lo tokenize.lo update.lo util.lo vdbe.lo where.lo trigger.lo
# All of the source code files.
#
@@ -94,7 +94,8 @@ SRC = \
$(TOP)/src/util.c \
$(TOP)/src/vdbe.c \
$(TOP)/src/vdbe.h \
$(TOP)/src/where.c
$(TOP)/src/where.c \
$(TOP)/src/trigger.c
# Source code to the test files.
#
@@ -211,6 +212,9 @@ select.lo: $(TOP)/src/select.c $(HDR)
table.lo: $(TOP)/src/table.c $(HDR)
$(LIBTOOL) $(TCC) -c $(TOP)/src/table.c
trigger.lo: $(TOP)/src/trigger.c $(HDR)
$(LIBTOOL) $(TCC) -c $(TOP)/src/trigger.c
update.lo: $(TOP)/src/update.c $(HDR)
$(LIBTOOL) $(TCC) -c $(TOP)/src/update.c