Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove the unused TCLSTUBSFLAGS from the makefiles. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1412cc8f9397b6bba5b2db372c1efe97 |
User & Date: | drh 2018-02-22 19:40:23.223 |
Context
2018-02-22
| ||
20:36 | The Makefile should now work out-of-the-box on Ubuntu. (check-in: 5b2d8db588 user: drh tags: trunk) | |
19:40 | Remove the unused TCLSTUBSFLAGS from the makefiles. (check-in: 1412cc8f93 user: drh tags: trunk) | |
19:34 | Remove the NAWK macros from the Makefiles, since they are no longer used. (check-in: 76b1d7f1d4 user: drh tags: trunk) | |
Changes
Changes to Makefile.
︙ | ︙ | |||
32 33 34 35 36 37 38 | CC = gcc -g -Wall #### Extra C-compiler flags needed to compile TCLSH # TCLINC = TCLFLAGS = -ldl -lm -lpthread -ltcl -lz | < < < < < | 32 33 34 35 36 37 38 39 40 41 | CC = gcc -g -Wall #### Extra C-compiler flags needed to compile TCLSH # TCLINC = TCLFLAGS = -ldl -lm -lpthread -ltcl -lz # You should not have to change anything below this line ############################################################################### include $(DOC)/main.mk |
Changes to main.mk.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ############################################################################### # The following macros should be defined before this script is # invoked: # # DOC The toplevel directory of the documentation source tree. # # SRC The toplevel directory of the source code source tree. # # BLD The directory in which the current source code has been # built using "make sqlite3.c sqlite3" # # TH3 The toplevel directory for TH3. May be an empty string. # # SLT The toplevel directory for SQLLogicTest. May be an # empty string # | > > > > < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ############################################################################### # The following macros should be defined before this script is # invoked: # # TCLINC Extra -I options needed to find the TCL header files # # TCLFLAGS Extra C-compiler options needed to link against TCL # # DOC The toplevel directory of the documentation source tree. # # SRC The toplevel directory of the source code source tree. # # BLD The directory in which the current source code has been # built using "make sqlite3.c sqlite3" # # TH3 The toplevel directory for TH3. May be an empty string. # # SLT The toplevel directory for SQLLogicTest. May be an # empty string # # CC A C-compiler and arguments for building utility programs # # Once the macros above are defined, the rest of this make script will # build the SQLite library and testing tools. ################################################################################ TCLSH = tclsh.docsrc |
︙ | ︙ |