From patchwork Wed Nov 7 02:14:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 994048 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 42qVQN269Wz9sND for ; Wed, 7 Nov 2018 13:16:12 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="SnWn7jgq"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 42qVQM744zzF3G4 for ; Wed, 7 Nov 2018 13:16:11 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="SnWn7jgq"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 42qVP62bcPzF3Fv for ; Wed, 7 Nov 2018 13:15:06 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="SnWn7jgq"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 42qVP53Lscz9sNF; Wed, 7 Nov 2018 13:15:05 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1541556905; bh=vkk4yo3XsuFSGqDHB7Cq//b1ZVAaMgCI6/rq/372BFs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SnWn7jgqnYY/dqu3NmblCk/BjWcn4rlP+oePK6cm0cifJUeUwNrXoZgyg1dqMjW4L Otu8osbmYJ0JXtgYxHPzHQ24qsFC/UQlzWr4A7TztNzQxPx8NKrh0gr594U2HLR1VY cZmXl0v2HY7NX9ZZw7XdH0Pwq3hUH5J0W0OkheO+B/2lx/2zNIUvBiUAb56M4nJ7+B zB0HslJDwqXcjGdxpd3WOcsei6UCvWKA8SGjfL4Jy5jT6k9KurrDRfeJKb1BtgC9jC x7bnSWJCEh5YbpquAX51VvZ8px/gjsY+cDcokHajEYwW6dzs/SDrLkbbKLA6YnUeVt 8C7A6MBV89idg== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Wed, 7 Nov 2018 13:14:48 +1100 Message-Id: <20181107021456.1219553-3-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20181107021456.1219553-1-amitay@ozlabs.org> References: <20181107021456.1219553-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH 02/10] Makefile: Keep libfdt sources sorted X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs --- Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7c291bd..82528a3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -111,16 +111,16 @@ libfdt_la_CFLAGS = -I$(top_srcdir)/libfdt libpdbg_la_CFLAGS = -I$(top_srcdir)/libfdt -Wall -Werror libfdt_la_SOURCES = \ + libfdt/fdt_addresses.c \ libfdt/fdt.c \ + libfdt/fdt_empty_tree.c \ + libfdt/fdt.h \ + libfdt/fdt_overlay.c \ libfdt/fdt_ro.c \ - libfdt/fdt_wip.c \ - libfdt/fdt_sw.c \ libfdt/fdt_rw.c \ libfdt/fdt_strerror.c \ - libfdt/fdt_empty_tree.c \ - libfdt/fdt_addresses.c \ - libfdt/fdt_overlay.c \ - libfdt/fdt.h \ + libfdt/fdt_sw.c \ + libfdt/fdt_wip.c \ libfdt/libfdt_env.h \ libfdt/libfdt.h \ libfdt/libfdt_internal.h