Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add the Makefile.in that was forgotten with checkin #562 (CVS 563) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
29b8330ca6bfe32c499a045189683100 |
User & Date: | danielk1977 2002-05-15 08:43:10 |
Context
2002-05-15
| ||
11:43 | In the "lang.html" documentation file, put the CREATE TRIGGER and DROP TRIGGER sections in alphabetical order. (CVS 564) check-in: d1d8642b user: drh tags: trunk | |
08:43 | Add the Makefile.in that was forgotten with checkin #562 (CVS 563) check-in: 29b8330c user: danielk1977 tags: trunk | |
08:30 | Added FOR EACH ROW triggers functionality (CVS 562) check-in: 794bf67b user: danielk1977 tags: trunk | |
Changes
Changes to Makefile.in.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 .. 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 ... 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# You should not have to change anything below this line ############################################################################### # Object files for the SQLite library. # 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 # All of the source code files. # SRC = \ $(TOP)/src/btree.c \ $(TOP)/src/btree.h \ $(TOP)/src/build.c \ ................................................................................ $(TOP)/src/table.c \ $(TOP)/src/tclsqlite.c \ $(TOP)/src/tokenize.c \ $(TOP)/src/update.c \ $(TOP)/src/util.c \ $(TOP)/src/vdbe.c \ $(TOP)/src/vdbe.h \ $(TOP)/src/where.c # Source code to the test files. # TESTSRC = \ $(TOP)/src/btree.c \ $(TOP)/src/os.c \ $(TOP)/src/pager.c \ ................................................................................ select.lo: $(TOP)/src/select.c $(HDR) $(LIBTOOL) $(TCC) -c $(TOP)/src/select.c table.lo: $(TOP)/src/table.c $(HDR) $(LIBTOOL) $(TCC) -c $(TOP)/src/table.c update.lo: $(TOP)/src/update.c $(HDR) $(LIBTOOL) $(TCC) -c $(TOP)/src/update.c tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR) $(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c printf.lo: $(TOP)/src/printf.c $(HDR) |
| | > > > > |
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 .. 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 ... 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# You should not have to change anything below this line ############################################################################### # Object files for the SQLite library. # 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 trigger.lo # All of the source code files. # SRC = \ $(TOP)/src/btree.c \ $(TOP)/src/btree.h \ $(TOP)/src/build.c \ ................................................................................ $(TOP)/src/table.c \ $(TOP)/src/tclsqlite.c \ $(TOP)/src/tokenize.c \ $(TOP)/src/update.c \ $(TOP)/src/util.c \ $(TOP)/src/vdbe.c \ $(TOP)/src/vdbe.h \ $(TOP)/src/where.c \ $(TOP)/src/trigger.c # Source code to the test files. # TESTSRC = \ $(TOP)/src/btree.c \ $(TOP)/src/os.c \ $(TOP)/src/pager.c \ ................................................................................ select.lo: $(TOP)/src/select.c $(HDR) $(LIBTOOL) $(TCC) -c $(TOP)/src/select.c 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 tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR) $(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c printf.lo: $(TOP)/src/printf.c $(HDR) |