Fossil SCM
Add comments about leading './' in front of source and build directory names.
Commit
f3096fe00ef8806ecaa5f58fa62f0fc58ad4ec71
Parent
590cee0ec92d539…
1 file changed
+8
+8
| --- Makefile.classic | ||
| +++ Makefile.classic | ||
| @@ -5,14 +5,22 @@ | ||
| 5 | 5 | # But you are free to vary some of the definitions if desired. |
| 6 | 6 | # |
| 7 | 7 | #### The toplevel directory of the source tree. Fossil can be built |
| 8 | 8 | # in a directory that is separate from the source tree. Just change |
| 9 | 9 | # the following to point from the build directory to the src/ folder. |
| 10 | +# Having a "./" prefix in the value of this variable breaks our use of the | |
| 11 | +# "makeheaders" tool when running make on the MinGW platform, apparently | |
| 12 | +# due to some command line argument manipulation performed automatically | |
| 13 | +# by the shell. | |
| 10 | 14 | # |
| 11 | 15 | SRCDIR = src |
| 12 | 16 | |
| 13 | 17 | #### The directory into which object code files should be written. |
| 18 | +# Having a "./" prefix in the value of this variable breaks our use of the | |
| 19 | +# "makeheaders" tool when running make on the MinGW platform, apparently | |
| 20 | +# due to some command line argument manipulation performed automatically | |
| 21 | +# by the shell. | |
| 14 | 22 | # |
| 15 | 23 | # |
| 16 | 24 | OBJDIR = bld |
| 17 | 25 | |
| 18 | 26 | #### C Compiler and options for use in building executables that |
| 19 | 27 |
| --- Makefile.classic | |
| +++ Makefile.classic | |
| @@ -5,14 +5,22 @@ | |
| 5 | # But you are free to vary some of the definitions if desired. |
| 6 | # |
| 7 | #### The toplevel directory of the source tree. Fossil can be built |
| 8 | # in a directory that is separate from the source tree. Just change |
| 9 | # the following to point from the build directory to the src/ folder. |
| 10 | # |
| 11 | SRCDIR = src |
| 12 | |
| 13 | #### The directory into which object code files should be written. |
| 14 | # |
| 15 | # |
| 16 | OBJDIR = bld |
| 17 | |
| 18 | #### C Compiler and options for use in building executables that |
| 19 |
| --- Makefile.classic | |
| +++ Makefile.classic | |
| @@ -5,14 +5,22 @@ | |
| 5 | # But you are free to vary some of the definitions if desired. |
| 6 | # |
| 7 | #### The toplevel directory of the source tree. Fossil can be built |
| 8 | # in a directory that is separate from the source tree. Just change |
| 9 | # the following to point from the build directory to the src/ folder. |
| 10 | # Having a "./" prefix in the value of this variable breaks our use of the |
| 11 | # "makeheaders" tool when running make on the MinGW platform, apparently |
| 12 | # due to some command line argument manipulation performed automatically |
| 13 | # by the shell. |
| 14 | # |
| 15 | SRCDIR = src |
| 16 | |
| 17 | #### The directory into which object code files should be written. |
| 18 | # Having a "./" prefix in the value of this variable breaks our use of the |
| 19 | # "makeheaders" tool when running make on the MinGW platform, apparently |
| 20 | # due to some command line argument manipulation performed automatically |
| 21 | # by the shell. |
| 22 | # |
| 23 | # |
| 24 | OBJDIR = bld |
| 25 | |
| 26 | #### C Compiler and options for use in building executables that |
| 27 |