summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Megyei <mathias@mnet-mail.de>2007-10-04 21:49:19 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2007-10-16 01:12:06 (GMT)
commit922aa807f5fee97fcb2ccd1d1db63b59bdd02128 (patch)
tree24a0c2fe2c8465d30c58da95e0f3174b13f07188
parentc005c6aa980f5f51e00d1f6a80ae0f009d533627 (diff)
downloadgit-922aa807f5fee97fcb2ccd1d1db63b59bdd02128.zip
git-922aa807f5fee97fcb2ccd1d1db63b59bdd02128.tar.gz
git-922aa807f5fee97fcb2ccd1d1db63b59bdd02128.tar.bz2
Do not remove distributed configure script
Before this patch the clean target has removed the configure script that comes with Git tar file. That made compiling Git for different architectures inconvenient. This patch excludes configure from the files to be deleted by 'make clean' and adds new target 'distclean' to preserve old functionality. Signed-off-by: Mathias Megyei <mathias@mnet-mail.de> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 42ba1d0..c63d656 100644
--- a/Makefile
+++ b/Makefile
@@ -1066,6 +1066,9 @@ dist-doc:
### Cleaning rules
+distclean: clean
+ $(RM) configure
+
clean:
$(RM) *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o xdiff/*.o \
$(LIB_FILE) $(XDIFF_LIB)
@@ -1073,7 +1076,7 @@ clean:
$(RM) $(TEST_PROGRAMS)
$(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
$(RM) -r autom4te.cache
- $(RM) configure config.log config.mak.autogen config.mak.append config.status config.cache
+ $(RM) config.log config.mak.autogen config.mak.append config.status config.cache
$(RM) -r $(GIT_TARNAME) .doc-tmp-dir
$(RM) $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
$(RM) $(htmldocs).tar.gz $(manpages).tar.gz