Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Create directories using "mkdir -p". Ticket #903. (CVS 1966) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
02de1cf95e0cf230aeebdb0c4684e486 |
User & Date: | drh 2004-09-17 20:47:17.000 |
Context
2004-09-17
| ||
21:07 | Make use of $(libdir) in the Makefile.in. Ticket #904. (CVS 1967) (check-in: 10b5e51733 user: drh tags: trunk) | |
20:47 | Create directories using "mkdir -p". Ticket #903. (CVS 1966) (check-in: 02de1cf95e user: drh tags: trunk) | |
20:46 | Close stray statements prior to finishing trace.test, to avoid a file descriptor leak. (CVS 1965) (check-in: 8bb0221da8 user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
204 205 206 207 208 209 210 | # copies of all of the C source code and header files needed to # build on the target system. Some of the C source code and header # files are automatically generated. This target takes care of # all that automatic generation. # target_source: $(SRC) $(VDBEHDR) rm -rf tsrc | | | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | # copies of all of the C source code and header files needed to # build on the target system. Some of the C source code and header # files are automatically generated. This target takes care of # all that automatic generation. # target_source: $(SRC) $(VDBEHDR) rm -rf tsrc mkdir -p tsrc cp $(SRC) $(VDBEHDR) tsrc rm tsrc/sqlite.h.in tsrc/parse.y cp parse.c opcodes.c tsrc cp $(TOP)/sqlite3.def tsrc # Rules to build the LEMON compiler generator # |
︙ | ︙ | |||
436 437 438 439 440 441 442 | datatype3.html: $(TOP)/www/datatype3.tcl tclsh $(TOP)/www/datatype3.tcl >datatype3.html docs.html: $(TOP)/www/docs.tcl tclsh $(TOP)/www/docs.tcl >docs.html download.html: $(TOP)/www/download.tcl | | | 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | datatype3.html: $(TOP)/www/datatype3.tcl tclsh $(TOP)/www/datatype3.tcl >datatype3.html docs.html: $(TOP)/www/docs.tcl tclsh $(TOP)/www/docs.tcl >docs.html download.html: $(TOP)/www/download.tcl mkdir -p doc tclsh $(TOP)/www/download.tcl >download.html faq.html: $(TOP)/www/faq.tcl tclsh $(TOP)/www/faq.tcl >faq.html fileformat.html: $(TOP)/www/fileformat.tcl tclsh $(TOP)/www/fileformat.tcl >fileformat.html |
︙ | ︙ |