Fossil SCM
A couple more 'src' to 'tools' fixes.
Commit
def53f04199562e18f6ae128f5c2876b8c386b49b603852bdac45e58749573a6
Parent
82c62e5f8dcef60…
2 files changed
+7
-7
+2
-2
+7
-7
| --- BUILD.txt | ||
| +++ BUILD.txt | ||
| @@ -55,24 +55,24 @@ | ||
| 55 | 55 | and runs various tests with the C compiler to create Makefile |
| 56 | 56 | from the Makefile.in template as well as autoconfig.h |
| 57 | 57 | |
| 58 | 58 | * The Makefile just sets up a few macros and then invokes the |
| 59 | 59 | real makefile in src/main.mk. The src/main.mk makefile is |
| 60 | - automatically generated by a TCL script found at src/makemake.tcl. | |
| 61 | - Do not edit src/main.mk directly. Update src/makemake.tcl and | |
| 60 | + automatically generated by a TCL script found at tools/makemake.tcl. | |
| 61 | + Do not edit src/main.mk directly. Update tools/makemake.tcl and | |
| 62 | 62 | then rerun it. |
| 63 | 63 | |
| 64 | 64 | * The *.h header files are automatically generated using a program |
| 65 | 65 | called "makeheaders". Source code to the makeheaders program is |
| 66 | - found in src/makeheaders.c. Documentation is found in | |
| 67 | - src/makeheaders.html. | |
| 66 | + found in tools/makeheaders.c. Documentation is found in | |
| 67 | + tools/makeheaders.html. | |
| 68 | 68 | |
| 69 | 69 | * Most *.c source files are preprocessed using a program called |
| 70 | - "translate". The sources to translate are found in src/translate.c. | |
| 71 | - A header comment in src/translate.c explains in detail what it does. | |
| 70 | + "translate". The sources to translate are found in tools/translate.c. | |
| 71 | + A header comment in tools/translate.c explains in detail what it does. | |
| 72 | 72 | |
| 73 | -* The src/mkindex.c program generates some C code that implements | |
| 73 | +* The tools/mkindex.c program generates some C code that implements | |
| 74 | 74 | static lookup tables. See the header comment in the source code |
| 75 | 75 | for details on what it does. |
| 76 | 76 | |
| 77 | 77 | Additional information on the build process is available from |
| 78 | 78 | http://fossil-scm.org/home/doc/trunk/www/makefile.wiki |
| 79 | 79 |
| --- BUILD.txt | |
| +++ BUILD.txt | |
| @@ -55,24 +55,24 @@ | |
| 55 | and runs various tests with the C compiler to create Makefile |
| 56 | from the Makefile.in template as well as autoconfig.h |
| 57 | |
| 58 | * The Makefile just sets up a few macros and then invokes the |
| 59 | real makefile in src/main.mk. The src/main.mk makefile is |
| 60 | automatically generated by a TCL script found at src/makemake.tcl. |
| 61 | Do not edit src/main.mk directly. Update src/makemake.tcl and |
| 62 | then rerun it. |
| 63 | |
| 64 | * The *.h header files are automatically generated using a program |
| 65 | called "makeheaders". Source code to the makeheaders program is |
| 66 | found in src/makeheaders.c. Documentation is found in |
| 67 | src/makeheaders.html. |
| 68 | |
| 69 | * Most *.c source files are preprocessed using a program called |
| 70 | "translate". The sources to translate are found in src/translate.c. |
| 71 | A header comment in src/translate.c explains in detail what it does. |
| 72 | |
| 73 | * The src/mkindex.c program generates some C code that implements |
| 74 | static lookup tables. See the header comment in the source code |
| 75 | for details on what it does. |
| 76 | |
| 77 | Additional information on the build process is available from |
| 78 | http://fossil-scm.org/home/doc/trunk/www/makefile.wiki |
| 79 |
| --- BUILD.txt | |
| +++ BUILD.txt | |
| @@ -55,24 +55,24 @@ | |
| 55 | and runs various tests with the C compiler to create Makefile |
| 56 | from the Makefile.in template as well as autoconfig.h |
| 57 | |
| 58 | * The Makefile just sets up a few macros and then invokes the |
| 59 | real makefile in src/main.mk. The src/main.mk makefile is |
| 60 | automatically generated by a TCL script found at tools/makemake.tcl. |
| 61 | Do not edit src/main.mk directly. Update tools/makemake.tcl and |
| 62 | then rerun it. |
| 63 | |
| 64 | * The *.h header files are automatically generated using a program |
| 65 | called "makeheaders". Source code to the makeheaders program is |
| 66 | found in tools/makeheaders.c. Documentation is found in |
| 67 | tools/makeheaders.html. |
| 68 | |
| 69 | * Most *.c source files are preprocessed using a program called |
| 70 | "translate". The sources to translate are found in tools/translate.c. |
| 71 | A header comment in tools/translate.c explains in detail what it does. |
| 72 | |
| 73 | * The tools/mkindex.c program generates some C code that implements |
| 74 | static lookup tables. See the header comment in the source code |
| 75 | for details on what it does. |
| 76 | |
| 77 | Additional information on the build process is available from |
| 78 | http://fossil-scm.org/home/doc/trunk/www/makefile.wiki |
| 79 |
+2
-2
| --- www/makefile.wiki | ||
| +++ www/makefile.wiki | ||
| @@ -23,12 +23,12 @@ | ||
| 23 | 23 | |
| 24 | 24 | Each preprocessor program is a separate C program implemented in |
| 25 | 25 | a single file of C source code. The three preprocessor programs |
| 26 | 26 | are: |
| 27 | 27 | |
| 28 | - 1. [/file/src/mkindex.c | mkindex.c] | |
| 29 | - 2. [/file/src/translate.c | translate.c] | |
| 28 | + 1. [/file/tools/mkindex.c | mkindex.c] | |
| 29 | + 2. [/file/tools/translate.c | translate.c] | |
| 30 | 30 | 3. [/file/tools/makeheaders.c | makeheaders.c] |
| 31 | 31 | |
| 32 | 32 | Fossil uses [http://www.sqlite.org/ | SQLite] for on-disk |
| 33 | 33 | storage. The SQLite implementation is contained in three source |
| 34 | 34 | code files that do not participate in the preprocessing steps. |
| 35 | 35 |
| --- www/makefile.wiki | |
| +++ www/makefile.wiki | |
| @@ -23,12 +23,12 @@ | |
| 23 | |
| 24 | Each preprocessor program is a separate C program implemented in |
| 25 | a single file of C source code. The three preprocessor programs |
| 26 | are: |
| 27 | |
| 28 | 1. [/file/src/mkindex.c | mkindex.c] |
| 29 | 2. [/file/src/translate.c | translate.c] |
| 30 | 3. [/file/tools/makeheaders.c | makeheaders.c] |
| 31 | |
| 32 | Fossil uses [http://www.sqlite.org/ | SQLite] for on-disk |
| 33 | storage. The SQLite implementation is contained in three source |
| 34 | code files that do not participate in the preprocessing steps. |
| 35 |
| --- www/makefile.wiki | |
| +++ www/makefile.wiki | |
| @@ -23,12 +23,12 @@ | |
| 23 | |
| 24 | Each preprocessor program is a separate C program implemented in |
| 25 | a single file of C source code. The three preprocessor programs |
| 26 | are: |
| 27 | |
| 28 | 1. [/file/tools/mkindex.c | mkindex.c] |
| 29 | 2. [/file/tools/translate.c | translate.c] |
| 30 | 3. [/file/tools/makeheaders.c | makeheaders.c] |
| 31 | |
| 32 | Fossil uses [http://www.sqlite.org/ | SQLite] for on-disk |
| 33 | storage. The SQLite implementation is contained in three source |
| 34 | code files that do not participate in the preprocessing steps. |
| 35 |