From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from ernst.netinsight.se ([194.16.221.21]) by merlin.infradead.org with smtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WLqJ2-0000Bg-Rb for kexec@lists.infradead.org; Fri, 07 Mar 2014 08:39:01 +0000 Date: Fri, 7 Mar 2014 09:38:34 +0100 From: Simon =?UTF-8?B?S8OlZ3N0csO2bQ==?= Subject: [PATCH v2 1/4] build: Derive objects from source files Message-ID: <20140307093834.357a7563@marrow.netinsight.se> In-Reply-To: <20140307093626.09701790@marrow.netinsight.se> References: <20140307093626.09701790@marrow.netinsight.se> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "kexec" Errors-To: kexec-bounces+dwmw2=twosheds.infradead.org@lists.infradead.org To: "kexec@lists.infradead.org" , Atsushi Kumagai Removes duplicate information, so there is one less line to edit when renaming or adding files. Signed-off-by: Simon Kagstrom --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f20c118..d660951 100644 --- a/Makefile +++ b/Makefile @@ -41,9 +41,9 @@ endif SRC = makedumpfile.c makedumpfile.h diskdump_mod.h sadump_mod.h sadump_info.h SRC_PART = print_info.c dwarf_info.c elf_info.c erase_info.c sadump_info.c cache.c -OBJ_PART = print_info.o dwarf_info.o elf_info.o erase_info.o sadump_info.o cache.o +OBJ_PART=$(patsubst %.c,%.o,$(SRC_PART)) SRC_ARCH = arch/arm.c arch/x86.c arch/x86_64.c arch/ia64.c arch/ppc64.c arch/s390x.c arch/ppc.c -OBJ_ARCH = arch/arm.o arch/x86.o arch/x86_64.o arch/ia64.o arch/ppc64.o arch/s390x.o arch/ppc.o +OBJ_ARCH=$(patsubst %.c,%.o,$(SRC_ARCH)) LIBS = -ldw -lbz2 -lebl -ldl -lelf -lz ifneq ($(LINKTYPE), dynamic) -- 1.7.9.6 _______________________________________________ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec