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 |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
29b8330ca6bfe32c499a045189683100 |
User & Date: | danielk1977 2002-05-15 08:43:10.000 |
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: d1d8642b57 user: drh tags: trunk) | |
08:43 | Add the Makefile.in that was forgotten with checkin #562 (CVS 563) (check-in: 29b8330ca6 user: danielk1977 tags: trunk) | |
08:30 | Added FOR EACH ROW triggers functionality (CVS 562) (check-in: 794bf67b6b user: danielk1977 tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
59 60 61 62 63 64 65 | # 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 \ | | | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | # 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 \ |
︙ | ︙ | |||
90 91 92 93 94 95 96 | $(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 \ | | > | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | $(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 \ |
︙ | ︙ | |||
207 208 209 210 211 212 213 214 215 216 217 218 219 220 | 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) | > > > | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | 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) |
︙ | ︙ |