Fossil SCM
Fix the Makefile so that all parameters are commented and so that it works with non-GNU makes.
Commit
8fe33aa575be5c826710fd76fff0ea7476d6b8b2
Parent
28987096acb2fd6…
1 file changed
+4
-4
M
Makefile
+4
-4
| --- Makefile | ||
| +++ Makefile | ||
| @@ -3,10 +3,14 @@ | ||
| 3 | 3 | #### The toplevel directory of the source tree. Fossil can be built |
| 4 | 4 | # in a directory that is separate from the source tree. Just change |
| 5 | 5 | # the following to point from the build directory to the src/ folder. |
| 6 | 6 | # |
| 7 | 7 | SRCDIR = ./src |
| 8 | + | |
| 9 | +#### The directory into which object code files should be written. | |
| 10 | +# | |
| 11 | +# | |
| 8 | 12 | OBJDIR = ./obj |
| 9 | 13 | |
| 10 | 14 | #### C Compiler and options for use in building executables that |
| 11 | 15 | # will run on the platform that is doing the build. This is used |
| 12 | 16 | # to compile code-generator programs as part of the build process. |
| @@ -48,12 +52,8 @@ | ||
| 48 | 52 | |
| 49 | 53 | #### Tcl shell for use in running the fossil testsuite. |
| 50 | 54 | # |
| 51 | 55 | TCLSH = tclsh |
| 52 | 56 | |
| 53 | -#### Include a configuration file that can override any one of these settings. | |
| 54 | -# | |
| 55 | --include config.mak | |
| 56 | - | |
| 57 | 57 | # You should not need to change anything below this line |
| 58 | 58 | ############################################################################### |
| 59 | 59 | include $(SRCDIR)/main.mk |
| 60 | 60 |
| --- Makefile | |
| +++ Makefile | |
| @@ -3,10 +3,14 @@ | |
| 3 | #### The toplevel directory of the source tree. Fossil can be built |
| 4 | # in a directory that is separate from the source tree. Just change |
| 5 | # the following to point from the build directory to the src/ folder. |
| 6 | # |
| 7 | SRCDIR = ./src |
| 8 | OBJDIR = ./obj |
| 9 | |
| 10 | #### C Compiler and options for use in building executables that |
| 11 | # will run on the platform that is doing the build. This is used |
| 12 | # to compile code-generator programs as part of the build process. |
| @@ -48,12 +52,8 @@ | |
| 48 | |
| 49 | #### Tcl shell for use in running the fossil testsuite. |
| 50 | # |
| 51 | TCLSH = tclsh |
| 52 | |
| 53 | #### Include a configuration file that can override any one of these settings. |
| 54 | # |
| 55 | -include config.mak |
| 56 | |
| 57 | # You should not need to change anything below this line |
| 58 | ############################################################################### |
| 59 | include $(SRCDIR)/main.mk |
| 60 |
| --- Makefile | |
| +++ Makefile | |
| @@ -3,10 +3,14 @@ | |
| 3 | #### The toplevel directory of the source tree. Fossil can be built |
| 4 | # in a directory that is separate from the source tree. Just change |
| 5 | # the following to point from the build directory to the src/ folder. |
| 6 | # |
| 7 | SRCDIR = ./src |
| 8 | |
| 9 | #### The directory into which object code files should be written. |
| 10 | # |
| 11 | # |
| 12 | OBJDIR = ./obj |
| 13 | |
| 14 | #### C Compiler and options for use in building executables that |
| 15 | # will run on the platform that is doing the build. This is used |
| 16 | # to compile code-generator programs as part of the build process. |
| @@ -48,12 +52,8 @@ | |
| 52 | |
| 53 | #### Tcl shell for use in running the fossil testsuite. |
| 54 | # |
| 55 | TCLSH = tclsh |
| 56 | |
| 57 | # You should not need to change anything below this line |
| 58 | ############################################################################### |
| 59 | include $(SRCDIR)/main.mk |
| 60 |