From patchwork Tue Feb 6 08:48:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Vladislav Valtchev (VMware)" X-Patchwork-Id: 10758519 Return-Path: linux-trace-devel-owner@vger.kernel.org Received: from mail-pf0-f194.google.com ([209.85.192.194]:42242 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752263AbeBFItf (ORCPT ); Tue, 6 Feb 2018 03:49:35 -0500 Received: by mail-pf0-f194.google.com with SMTP id b25so317714pfd.9 for ; Tue, 06 Feb 2018 00:49:35 -0800 (PST) From: "Vladislav Valtchev (VMware)" To: rostedt@goodmis.org Cc: linux-trace-devel@vger.kernel.org, y.karadz@gmail.com, "Vladislav Valtchev (VMware)" Subject: [PATCH v2 14/24] trace-cmd: Move tracecmd headers in tracecmd/include Date: Tue, 6 Feb 2018 10:48:56 +0200 Message-Id: <20180206084906.9854-15-vladislav.valtchev@gmail.com> In-Reply-To: <20180206084906.9854-1-vladislav.valtchev@gmail.com> References: <20180206084906.9854-1-vladislav.valtchev@gmail.com> Sender: linux-trace-devel-owner@vger.kernel.org List-ID: Content-Length: 1989 This patch moves trace-cmd's private headers in a dedicated directory called tracecmd/include, as part of a bigger restructuring plan of trace-cmd's code base. Signed-off-by: Vladislav Valtchev (VMware) --- Makefile | 1 + bug.h => tracecmd/include/bug.h | 0 list.h => tracecmd/include/list.h | 0 trace-cmd-local.h => tracecmd/include/trace-cmd-local.h | 0 trace-local.h => tracecmd/include/trace-local.h | 0 trace-msg.h => tracecmd/include/trace-msg.h | 0 6 files changed, 1 insertion(+) rename bug.h => tracecmd/include/bug.h (100%) rename list.h => tracecmd/include/list.h (100%) rename trace-cmd-local.h => tracecmd/include/trace-cmd-local.h (100%) rename trace-local.h => tracecmd/include/trace-local.h (100%) rename trace-msg.h => tracecmd/include/trace-msg.h (100%) diff --git a/Makefile b/Makefile index b1f4c2c..4e604b4 100644 --- a/Makefile +++ b/Makefile @@ -200,6 +200,7 @@ INCLUDES += -I$(src)/include/trace-cmd INCLUDES += -I$(src)/lib/traceevent/include INCLUDES += -I$(src)/lib/trace-cmd/include INCLUDES += -I$(src)/kernel-shark/include +INCLUDES += -I$(src)/tracecmd/include include $(src)/features.mk diff --git a/bug.h b/tracecmd/include/bug.h similarity index 100% rename from bug.h rename to tracecmd/include/bug.h diff --git a/list.h b/tracecmd/include/list.h similarity index 100% rename from list.h rename to tracecmd/include/list.h diff --git a/trace-cmd-local.h b/tracecmd/include/trace-cmd-local.h similarity index 100% rename from trace-cmd-local.h rename to tracecmd/include/trace-cmd-local.h diff --git a/trace-local.h b/tracecmd/include/trace-local.h similarity index 100% rename from trace-local.h rename to tracecmd/include/trace-local.h diff --git a/trace-msg.h b/tracecmd/include/trace-msg.h similarity index 100% rename from trace-msg.h rename to tracecmd/include/trace-msg.h