From patchwork Mon Jul 16 06:32:12 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 944146 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.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41TYVl6SmQz9s29 for ; Mon, 16 Jul 2018 16:32:31 +1000 (AEST) 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="qQx6cZWx"; 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 41TYVl4PlKzF37K for ; Mon, 16 Jul 2018 16:32:31 +1000 (AEST) 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="qQx6cZWx"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41TYVd2cpQzF375 for ; Mon, 16 Jul 2018 16:32:25 +1000 (AEST) 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="qQx6cZWx"; 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 41TYVd0BYBz9s29; Mon, 16 Jul 2018 16:32:25 +1000 (AEST) 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=1531722745; bh=nXjLMROxuF/Cx9ZDAfY+7H35pHPiBihikPoo86/iANw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qQx6cZWxrSKdno7p+TXpgJIT2DHPWoYvGyJQcq7Urx+YDEZHVOw5pMMQTK1Jwj5oc rwfIMkQ7IWir19NkCcA+tae+XPEs/cjwM0cIJejwRy9qd3sglXG+MriwGlUYNoLU7w m1EJ91lL4xtm0nKx4ymu1i/KJzbLN5pwmrdljgekxurDlCeD5gxT1+hREieuKAo8Ax pkRqpSmoWOw60Y/tzE226gNShn+6Gx//+RkjVxTr/68CcZxVoA307zDjxtzMUMn0dq XGEDb358fnrer8uDZ0rj3FcmHIXHlSQsXaCR0pIdCuKq85BP2LftMEIf/5uok78tyj FLR4achX5S1Dw== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Mon, 16 Jul 2018 16:32:12 +1000 Message-Id: <20180716063216.20107-2-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180716063216.20107-1-amitay@ozlabs.org> References: <20180716063216.20107-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH 1/5] Makefile: Include header files for each target X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.27 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" This will ensure that "make dist" packages all the required files. Also, "make ctags" will include tags from header files. Signed-off-by: Amitay Isaacs --- Makefile.am | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4e0dce2..a795926 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,7 +41,13 @@ pdbg_SOURCES = \ src/progress.c \ src/parsers.c \ src/optcmd.c \ - src/options_@ARCH@.c + src/options_@ARCH@.c \ + src/htm.h \ + src/main.h \ + src/optcmd.h \ + src/options.h \ + src/parsers.h \ + src/progress.h pdbg_LDADD = $(DT_objects) libpdbg.la libfdt.la \ -L.libs -lrt @@ -64,7 +70,11 @@ libfdt_la_SOURCES = \ libfdt/fdt_strerror.c \ libfdt/fdt_empty_tree.c \ libfdt/fdt_addresses.c \ - libfdt/fdt_overlay.c + libfdt/fdt_overlay.c \ + libfdt/fdt.h \ + libfdt/libfdt_env.h \ + libfdt/libfdt.h \ + libfdt/libfdt_internal.h libpdbg_la_SOURCES = \ libpdbg/libpdbg.c \ @@ -81,7 +91,15 @@ libpdbg_la_SOURCES = \ libpdbg/device.c \ libpdbg/target.c \ libpdbg/htm.c \ - libpdbg/debug.c + libpdbg/debug.c \ + libpdbg/backend.h \ + libpdbg/bitutils.h \ + libpdbg/compiler.h \ + libpdbg/debug.h \ + libpdbg/device.h \ + libpdbg/operations.h \ + libpdbg/libpdbg.h \ + libpdbg/target.h M4_V = $(M4_V_$(V)) M4_V_ = $(M4_V_$(AM_DEFAULT_VERBOSITY))