From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757257Ab0LMLdB (ORCPT ); Mon, 13 Dec 2010 06:33:01 -0500 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 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; cs-CZ; rv:1.9.1.15) Gecko/20101026 SUSE/3.0.10 Thunderbird/3.0.10 MIME-Version: 1.0 To: Tracey Dent Cc: linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org 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-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.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