From patchwork Mon Jul 16 06:32:15 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 944150 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41TYW53n5sz9s29 for ; Mon, 16 Jul 2018 16:32:49 +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="ddyfEHXE"; 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 41TYW51SSfzF379 for ; Mon, 16 Jul 2018 16:32:49 +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="ddyfEHXE"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41TYVf17k0zF37B for ; Mon, 16 Jul 2018 16:32:26 +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="ddyfEHXE"; 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 41TYVd5RgGz9s4v; 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=XlvF5msi7Rhr0jbY6YAdTLOyZS7AHjQoreQNr7ciLIg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ddyfEHXE0jmCStbOEGH20QrAzBioBXitPhxXjp3/djtuM5S9e1cqu7HtzzxZA+WaN WpPukQg2d81Lz1KRq/6tEr1oNgdcIM+ofOWbYOW6MJW8c7U74ZkDCOsH89ZzfiZRUo Xf5skiCI6RMkF5VCUUQH5XzSMY9QCWlc/c/7/532S/qpj0sBseWDpLirYN1UD01ST4 wiBiQd6ef+aiIWph/s8RN+MMAHv3micw8keZzXhnAKvgMShIAjW/6jNuhU5uqIFQH7 TeHlT2QUQRo6YgzF4eSg9BjHw8Wg8uFmAmV0Ov8BLhEXogBS/XPabcWaEKidPpK+56 Gb6Cpw65ucxJQ== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Mon, 16 Jul 2018 16:32:15 +1000 Message-Id: <20180716063216.20107-5-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 4/5] Makefile: Package ccan files 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" Signed-off-by: Amitay Isaacs --- Makefile.am | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 739ab23..a24a857 100644 --- a/Makefile.am +++ b/Makefile.am @@ -50,7 +50,7 @@ pdbg_SOURCES = \ src/parsers.h \ src/progress.h -pdbg_LDADD = $(DT_objects) libpdbg.la libfdt.la \ +pdbg_LDADD = $(DT_objects) libpdbg.la libfdt.la libccan.a \ -L.libs -lrt pdbg_LDFLAGS = -Wl,--whole-archive,-lpdbg,--no-whole-archive @@ -102,6 +102,20 @@ libpdbg_la_SOURCES = \ libpdbg/libpdbg.h \ libpdbg/target.h +noinst_LIBRARIES = libccan.a + +libccan_a_SOURCES = \ + ccan/array_size/array_size.h \ + ccan/build_assert/build_assert.h \ + ccan/check_type/check_type.h \ + ccan/container_of/container_of.h \ + ccan/cppmagic/cppmagic.h \ + ccan/list/list.c \ + ccan/list/list.h \ + ccan/short_types/short_types.h \ + ccan/str/str.c \ + ccan/str/str.h + M4_V = $(M4_V_$(V)) M4_V_ = $(M4_V_$(AM_DEFAULT_VERBOSITY)) M4_V_0 = @echo " M4 " $@;