From: Paul Smith Date: Sun, 13 Jan 2013 02:53:15 +0000 (-0500) Subject: Fix clean rules. X-Git-Tag: 3.99.90~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a5a1aff6aeff6df69ecda81b40deebed89b718a;p=platform%2Fupstream%2Fmake.git Fix clean rules. --- 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 # ----------------------------------------------------------------------