summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-01-12 21:53:15 -0500
committerPaul Smith <psmith@gnu.org>2013-01-12 21:53:15 -0500
commit5a5a1aff6aeff6df69ecda81b40deebed89b718a (patch)
treeaba2caf5d7d6f0abe88495280cc4e4e296f4317e /maintMakefile
parent002702c89c77479cb1d950f28a32691d0bdcc309 (diff)
downloadgunmake-5a5a1aff6aeff6df69ecda81b40deebed89b718a.tar.gz
Fix clean rules.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/maintMakefile b/maintMakefile
index a857897..a4fb2f1 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -87,12 +87,14 @@ DEP_FILES := $(wildcard $(DEPDIR)/*.Po)
GIT := git
-# This rule cleans out the tree right down to how it looks when you do a
-# vanilla Git checkout. It depends on correct .gitignore file content.
+# git-clean: Clean all "ignored" files. Leave untracked files.
+# git-very-clean: Clean all files that aren't stored in source control.
-.PHONY: git-clean
+.PHONY: git-clean git-very-clean
git-clean:
-$(GIT) clean -fdX
+git-very-clean: git-clean
+ -$(GIT) clean -fd
# ----------------------------------------------------------------------