From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cantor2.suse.de ([195.135.220.15]:59066 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757162Ab0LMLdA (ORCPT ); Mon, 13 Dec 2010 06:33:00 -0500 Message-ID: <4D06051A.8090801@suse.cz> Date: Mon, 13 Dec 2010 12:35:54 +0100 From: Michal Marek MIME-Version: 1.0 Subject: Re: [PATCH] Makefile: add file types to remove with make clean References: <1292088460-8734-1-git-send-email-tdent48227@gmail.com> In-Reply-To: <1292088460-8734-1-git-send-email-tdent48227@gmail.com> Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Tracey Dent Cc: linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org Dne 11.12.2010 18:27, Tracey Dent napsal(a): > Remove .rej and .orig files when you invoke a make clean. > They are unnecessary files which are produced by using the program > patch and they prevents you from getting a completely clean directory. make clean removes files generated by the build system. *.rej, *.orig and editor backup files can contain valuable information and should thus be skipped. If you want a completely clean directory, have a look at make distclean. Michal