Fossil SCM
Add "clean" target as well. Remove noncence part.
Commit
4966e15d04e77a5f03e1f682a51f81f248c70959
Parent
648c27e6ee09301…
1 file changed
+3
-5
+3
-5
| --- compat/tcl-8.6/unix/Makefile | ||
| +++ compat/tcl-8.6/unix/Makefile | ||
| @@ -1,14 +1,12 @@ | ||
| 1 | 1 | |
| 2 | -all: libtclstub8.6.a tclConfig.sh | |
| 3 | - | |
| 4 | 2 | libtclstub8.6.a: |
| 5 | 3 | $(PREFIX)$(CC) -c -O2 -fomit-frame-pointer -DUSE_TCL_STUBS ../generic/tclStubLib.c -o tclStubLib.o |
| 6 | 4 | $(PREFIX)ar cr libtclstub8.6.a tclStubLib.o |
| 7 | 5 | $(PREFIX)ranlib libtclstub8.6.a |
| 8 | 6 | |
| 9 | -tclConfig.sh: | |
| 10 | - echo "abc" > $@ | |
| 11 | - | |
| 12 | 7 | binaries: |
| 13 | 8 | @echo "Please copy the Tcl distribution you want to use to $(TCLSRCDIR)," |
| 14 | 9 | @echo "or compile Fossil with FOSSIL_ENABLE_TCL_STUBS" |
| 10 | + | |
| 11 | +clean: | |
| 12 | + rm libtclstub8.6.a tclStubLib.o | |
| 15 | 13 |
| --- compat/tcl-8.6/unix/Makefile | |
| +++ compat/tcl-8.6/unix/Makefile | |
| @@ -1,14 +1,12 @@ | |
| 1 | |
| 2 | all: libtclstub8.6.a tclConfig.sh |
| 3 | |
| 4 | libtclstub8.6.a: |
| 5 | $(PREFIX)$(CC) -c -O2 -fomit-frame-pointer -DUSE_TCL_STUBS ../generic/tclStubLib.c -o tclStubLib.o |
| 6 | $(PREFIX)ar cr libtclstub8.6.a tclStubLib.o |
| 7 | $(PREFIX)ranlib libtclstub8.6.a |
| 8 | |
| 9 | tclConfig.sh: |
| 10 | echo "abc" > $@ |
| 11 | |
| 12 | binaries: |
| 13 | @echo "Please copy the Tcl distribution you want to use to $(TCLSRCDIR)," |
| 14 | @echo "or compile Fossil with FOSSIL_ENABLE_TCL_STUBS" |
| 15 |
| --- compat/tcl-8.6/unix/Makefile | |
| +++ compat/tcl-8.6/unix/Makefile | |
| @@ -1,14 +1,12 @@ | |
| 1 | |
| 2 | libtclstub8.6.a: |
| 3 | $(PREFIX)$(CC) -c -O2 -fomit-frame-pointer -DUSE_TCL_STUBS ../generic/tclStubLib.c -o tclStubLib.o |
| 4 | $(PREFIX)ar cr libtclstub8.6.a tclStubLib.o |
| 5 | $(PREFIX)ranlib libtclstub8.6.a |
| 6 | |
| 7 | binaries: |
| 8 | @echo "Please copy the Tcl distribution you want to use to $(TCLSRCDIR)," |
| 9 | @echo "or compile Fossil with FOSSIL_ENABLE_TCL_STUBS" |
| 10 | |
| 11 | clean: |
| 12 | rm libtclstub8.6.a tclStubLib.o |
| 13 |