Fossil SCM
Typo and link fixes via [forum:09c35aec52377b41 | forum post 09c35aec52377b41].
Commit
1b13f430c6e65ec61691c779c9b5a4a409253a8507f64c7bfb6ae2108044e138
Parent
c3d321fb6f27a0c…
1 file changed
+8
-8
+8
-8
| --- www/makefile.wiki | ||
| +++ www/makefile.wiki | ||
| @@ -62,25 +62,25 @@ | ||
| 62 | 62 | files. |
| 63 | 63 | |
| 64 | 64 | The VERSION.h header file is generated from other information sources |
| 65 | 65 | using a small program called: |
| 66 | 66 | |
| 67 | - 11. [/file/src/mkversion.c | mkversion.c] | |
| 67 | + 11. [/file/tools/mkversion.c | mkversion.c] | |
| 68 | 68 | |
| 69 | 69 | The builtin_data.h header file contains the definitions of C-language |
| 70 | 70 | byte-array constants that contain various resources such as scripts and |
| 71 | 71 | images. The builtin_data.h header file is generate from the original |
| 72 | 72 | resource files using a small program called: |
| 73 | 73 | |
| 74 | - 12 [/file/src/mkbuiltin.c | mkbuiltin.c] | |
| 74 | + 12 [/file/tools/mkbuiltin.c | mkbuiltin.c] | |
| 75 | 75 | |
| 76 | 76 | Examples of built-in resources include the [/file/src/diff.tcl | diff.tcl] |
| 77 | 77 | script used to implement the --tk option to [/help?cmd=diff| fossil diff], |
| 78 | 78 | the [/file/src/markdown.md | markdown documentation], and the various |
| 79 | 79 | CSS scripts, headers, and footers used to implement built-in skins. New |
| 80 | 80 | resources files are added to the "extra_files" variable in |
| 81 | -[/file/src/makemake.tcl | makemake.tcl]. | |
| 81 | +[/file/tools/makemake.tcl | makemake.tcl]. | |
| 82 | 82 | |
| 83 | 83 | The src/ subdirectory also contains documentation about the |
| 84 | 84 | makeheaders preprocessor program: |
| 85 | 85 | |
| 86 | 86 | 13. [../tools/makeheaders.html | makeheaders.html] |
| @@ -91,15 +91,15 @@ | ||
| 91 | 91 | 14. makemake.tcl |
| 92 | 92 | |
| 93 | 93 | Running this Tcl script will automatically regenerate all makefiles. |
| 94 | 94 | In order to add a new source file to the Fossil implementation, simply |
| 95 | 95 | edit makemake.tcl to add the new filename, then rerun the script, and |
| 96 | -all of the makefiles for all targets will be rebuild. | |
| 96 | +all of the makefiles for all targets will be rebuilt. | |
| 97 | 97 | |
| 98 | 98 | There is an optional code verification step implemented using |
| 99 | 99 | |
| 100 | - 15. [/file/src/codecheck1.c | codecheck1.c] | |
| 100 | + 15. [/file/tools/codecheck1.c | codecheck1.c] | |
| 101 | 101 | |
| 102 | 102 | This file implements a small utility program ("codecheck1") |
| 103 | 103 | that scans other Fossil source files looking for errors in printf-style |
| 104 | 104 | format strings. |
| 105 | 105 | The codecheck1 utility detects missing or surplus arguments on |
| @@ -141,12 +141,12 @@ | ||
| 141 | 141 | (The "manifest" and "manifest.uuid" files are automatically generated and |
| 142 | 142 | updated by Fossil itself. See the [/help/setting | fossil set manifest] |
| 143 | 143 | command for additional information.) |
| 144 | 144 | |
| 145 | 145 | The VERSION.h header file is generated by |
| 146 | -a C program: src/mkversion.c. | |
| 147 | -To run the VERSION.h generator, first compile the src/mkversion.c | |
| 146 | +a C program: tools/mkversion.c. | |
| 147 | +To run the VERSION.h generator, first compile the tools/mkversion.c | |
| 148 | 148 | source file into a command-line program (named "mkversion.exe") |
| 149 | 149 | then run: |
| 150 | 150 | |
| 151 | 151 | <blockquote><pre> |
| 152 | 152 | mkversion.exe manifest.uuid manifest VERSION >VERSION.h |
| @@ -156,11 +156,11 @@ | ||
| 156 | 156 | directories right. The point is that the manifest.uuid, manifest, and |
| 157 | 157 | VERSION files |
| 158 | 158 | in the root of the source tree are the three arguments and |
| 159 | 159 | the generated VERSION.h file appears on standard output. |
| 160 | 160 | |
| 161 | -The builtin_data.h header file is generated by a C program: src/mkbuiltin.c. | |
| 161 | +The builtin_data.h header file is generated by a C program: tools/mkbuiltin.c. | |
| 162 | 162 | The builtin_data.h file contains C-language byte-array definitions for |
| 163 | 163 | the content of resource files used by Fossil. To generate the |
| 164 | 164 | builtin_data.h file, first compile the mkbuiltin.c program, then run: |
| 165 | 165 | |
| 166 | 166 | <blockquote><pre> |
| 167 | 167 |
| --- www/makefile.wiki | |
| +++ www/makefile.wiki | |
| @@ -62,25 +62,25 @@ | |
| 62 | files. |
| 63 | |
| 64 | The VERSION.h header file is generated from other information sources |
| 65 | using a small program called: |
| 66 | |
| 67 | 11. [/file/src/mkversion.c | mkversion.c] |
| 68 | |
| 69 | The builtin_data.h header file contains the definitions of C-language |
| 70 | byte-array constants that contain various resources such as scripts and |
| 71 | images. The builtin_data.h header file is generate from the original |
| 72 | resource files using a small program called: |
| 73 | |
| 74 | 12 [/file/src/mkbuiltin.c | mkbuiltin.c] |
| 75 | |
| 76 | Examples of built-in resources include the [/file/src/diff.tcl | diff.tcl] |
| 77 | script used to implement the --tk option to [/help?cmd=diff| fossil diff], |
| 78 | the [/file/src/markdown.md | markdown documentation], and the various |
| 79 | CSS scripts, headers, and footers used to implement built-in skins. New |
| 80 | resources files are added to the "extra_files" variable in |
| 81 | [/file/src/makemake.tcl | makemake.tcl]. |
| 82 | |
| 83 | The src/ subdirectory also contains documentation about the |
| 84 | makeheaders preprocessor program: |
| 85 | |
| 86 | 13. [../tools/makeheaders.html | makeheaders.html] |
| @@ -91,15 +91,15 @@ | |
| 91 | 14. makemake.tcl |
| 92 | |
| 93 | Running this Tcl script will automatically regenerate all makefiles. |
| 94 | In order to add a new source file to the Fossil implementation, simply |
| 95 | edit makemake.tcl to add the new filename, then rerun the script, and |
| 96 | all of the makefiles for all targets will be rebuild. |
| 97 | |
| 98 | There is an optional code verification step implemented using |
| 99 | |
| 100 | 15. [/file/src/codecheck1.c | codecheck1.c] |
| 101 | |
| 102 | This file implements a small utility program ("codecheck1") |
| 103 | that scans other Fossil source files looking for errors in printf-style |
| 104 | format strings. |
| 105 | The codecheck1 utility detects missing or surplus arguments on |
| @@ -141,12 +141,12 @@ | |
| 141 | (The "manifest" and "manifest.uuid" files are automatically generated and |
| 142 | updated by Fossil itself. See the [/help/setting | fossil set manifest] |
| 143 | command for additional information.) |
| 144 | |
| 145 | The VERSION.h header file is generated by |
| 146 | a C program: src/mkversion.c. |
| 147 | To run the VERSION.h generator, first compile the src/mkversion.c |
| 148 | source file into a command-line program (named "mkversion.exe") |
| 149 | then run: |
| 150 | |
| 151 | <blockquote><pre> |
| 152 | mkversion.exe manifest.uuid manifest VERSION >VERSION.h |
| @@ -156,11 +156,11 @@ | |
| 156 | directories right. The point is that the manifest.uuid, manifest, and |
| 157 | VERSION files |
| 158 | in the root of the source tree are the three arguments and |
| 159 | the generated VERSION.h file appears on standard output. |
| 160 | |
| 161 | The builtin_data.h header file is generated by a C program: src/mkbuiltin.c. |
| 162 | The builtin_data.h file contains C-language byte-array definitions for |
| 163 | the content of resource files used by Fossil. To generate the |
| 164 | builtin_data.h file, first compile the mkbuiltin.c program, then run: |
| 165 | |
| 166 | <blockquote><pre> |
| 167 |
| --- www/makefile.wiki | |
| +++ www/makefile.wiki | |
| @@ -62,25 +62,25 @@ | |
| 62 | files. |
| 63 | |
| 64 | The VERSION.h header file is generated from other information sources |
| 65 | using a small program called: |
| 66 | |
| 67 | 11. [/file/tools/mkversion.c | mkversion.c] |
| 68 | |
| 69 | The builtin_data.h header file contains the definitions of C-language |
| 70 | byte-array constants that contain various resources such as scripts and |
| 71 | images. The builtin_data.h header file is generate from the original |
| 72 | resource files using a small program called: |
| 73 | |
| 74 | 12 [/file/tools/mkbuiltin.c | mkbuiltin.c] |
| 75 | |
| 76 | Examples of built-in resources include the [/file/src/diff.tcl | diff.tcl] |
| 77 | script used to implement the --tk option to [/help?cmd=diff| fossil diff], |
| 78 | the [/file/src/markdown.md | markdown documentation], and the various |
| 79 | CSS scripts, headers, and footers used to implement built-in skins. New |
| 80 | resources files are added to the "extra_files" variable in |
| 81 | [/file/tools/makemake.tcl | makemake.tcl]. |
| 82 | |
| 83 | The src/ subdirectory also contains documentation about the |
| 84 | makeheaders preprocessor program: |
| 85 | |
| 86 | 13. [../tools/makeheaders.html | makeheaders.html] |
| @@ -91,15 +91,15 @@ | |
| 91 | 14. makemake.tcl |
| 92 | |
| 93 | Running this Tcl script will automatically regenerate all makefiles. |
| 94 | In order to add a new source file to the Fossil implementation, simply |
| 95 | edit makemake.tcl to add the new filename, then rerun the script, and |
| 96 | all of the makefiles for all targets will be rebuilt. |
| 97 | |
| 98 | There is an optional code verification step implemented using |
| 99 | |
| 100 | 15. [/file/tools/codecheck1.c | codecheck1.c] |
| 101 | |
| 102 | This file implements a small utility program ("codecheck1") |
| 103 | that scans other Fossil source files looking for errors in printf-style |
| 104 | format strings. |
| 105 | The codecheck1 utility detects missing or surplus arguments on |
| @@ -141,12 +141,12 @@ | |
| 141 | (The "manifest" and "manifest.uuid" files are automatically generated and |
| 142 | updated by Fossil itself. See the [/help/setting | fossil set manifest] |
| 143 | command for additional information.) |
| 144 | |
| 145 | The VERSION.h header file is generated by |
| 146 | a C program: tools/mkversion.c. |
| 147 | To run the VERSION.h generator, first compile the tools/mkversion.c |
| 148 | source file into a command-line program (named "mkversion.exe") |
| 149 | then run: |
| 150 | |
| 151 | <blockquote><pre> |
| 152 | mkversion.exe manifest.uuid manifest VERSION >VERSION.h |
| @@ -156,11 +156,11 @@ | |
| 156 | directories right. The point is that the manifest.uuid, manifest, and |
| 157 | VERSION files |
| 158 | in the root of the source tree are the three arguments and |
| 159 | the generated VERSION.h file appears on standard output. |
| 160 | |
| 161 | The builtin_data.h header file is generated by a C program: tools/mkbuiltin.c. |
| 162 | The builtin_data.h file contains C-language byte-array definitions for |
| 163 | the content of resource files used by Fossil. To generate the |
| 164 | builtin_data.h file, first compile the mkbuiltin.c program, then run: |
| 165 | |
| 166 | <blockquote><pre> |
| 167 |