From patchwork Mon Jan 12 16:34:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergio Gonzalez Monroy X-Patchwork-Id: 2242 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id F27B85AEB; Mon, 12 Jan 2015 17:34:45 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id BF1995AD5 for ; Mon, 12 Jan 2015 17:34:14 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 12 Jan 2015 08:29:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,744,1413270000"; d="scan'208";a="636101537" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 12 Jan 2015 08:34:13 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t0CGYCDw022037 for ; Mon, 12 Jan 2015 16:34:12 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t0CGYCMZ019355 for ; Mon, 12 Jan 2015 16:34:12 GMT Received: (from smonroy@localhost) by sivswdev02.ir.intel.com with id t0CGY73f019347 for dev@dpdk.org; Mon, 12 Jan 2015 16:34:07 GMT From: Sergio Gonzalez Monroy To: dev@dpdk.org Date: Mon, 12 Jan 2015 16:34:02 +0000 Message-Id: <1421080446-19249-10-git-send-email-sergio.gonzalez.monroy@intel.com> X-Mailer: git-send-email 1.8.5.4 In-Reply-To: <1421080446-19249-1-git-send-email-sergio.gonzalez.monroy@intel.com> References: <1421080446-19249-1-git-send-email-sergio.gonzalez.monroy@intel.com> Subject: [dpdk-dev] [PATCH RFC 09/13] mk: new corelib makefile X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch creates a new rte.corelib.mk file and updates core libraries to use it. Signed-off-by: Sergio Gonzalez Monroy --- lib/core/librte_eal/bsdapp/eal/Makefile | 2 +- lib/core/librte_eal/linuxapp/eal/Makefile | 3 +- lib/core/librte_malloc/Makefile | 2 +- lib/core/librte_mbuf/Makefile | 2 +- lib/core/librte_mempool/Makefile | 2 +- lib/core/librte_ring/Makefile | 2 +- mk/rte.corelib.mk | 81 +++++++++++++++++++++++++++++++ 7 files changed, 87 insertions(+), 7 deletions(-) create mode 100644 mk/rte.corelib.mk diff --git a/lib/core/librte_eal/bsdapp/eal/Makefile b/lib/core/librte_eal/bsdapp/eal/Makefile index af0338f..afba0c6 100644 --- a/lib/core/librte_eal/bsdapp/eal/Makefile +++ b/lib/core/librte_eal/bsdapp/eal/Makefile @@ -93,5 +93,5 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP)-include/exec-env := \ DEPDIRS-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP) += lib/core/librte_eal/common -include $(RTE_SDK)/mk/rte.lib.mk +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/lib/core/librte_eal/linuxapp/eal/Makefile b/lib/core/librte_eal/linuxapp/eal/Makefile index 0af2cd6..04165a2 100644 --- a/lib/core/librte_eal/linuxapp/eal/Makefile +++ b/lib/core/librte_eal/linuxapp/eal/Makefile @@ -108,5 +108,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP)-include/exec-env := \ DEPDIRS-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP) += lib/core/librte_eal/common -include $(RTE_SDK)/mk/rte.lib.mk - +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/lib/core/librte_malloc/Makefile b/lib/core/librte_malloc/Makefile index 8ed6e7d..8bc3d06 100644 --- a/lib/core/librte_malloc/Makefile +++ b/lib/core/librte_malloc/Makefile @@ -45,4 +45,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_MALLOC)-include := rte_malloc.h # this lib needs eal DEPDIRS-$(CONFIG_RTE_LIBRTE_MALLOC) += lib/core/librte_eal -include $(RTE_SDK)/mk/rte.lib.mk +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/lib/core/librte_mbuf/Makefile b/lib/core/librte_mbuf/Makefile index b916d77..ceb4bd6 100644 --- a/lib/core/librte_mbuf/Makefile +++ b/lib/core/librte_mbuf/Makefile @@ -45,4 +45,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include := rte_mbuf.h # this lib needs eal DEPDIRS-$(CONFIG_RTE_LIBRTE_MBUF) += lib/core/librte_eal lib/core/librte_mempool -include $(RTE_SDK)/mk/rte.lib.mk +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/lib/core/librte_mempool/Makefile b/lib/core/librte_mempool/Makefile index 94a7fc1..6e1e7c3 100644 --- a/lib/core/librte_mempool/Makefile +++ b/lib/core/librte_mempool/Makefile @@ -48,4 +48,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_MEMPOOL)-include := rte_mempool.h DEPDIRS-$(CONFIG_RTE_LIBRTE_MEMPOOL) += lib/core/librte_eal lib/core/librte_ring DEPDIRS-$(CONFIG_RTE_LIBRTE_MEMPOOL) += lib/core/librte_malloc -include $(RTE_SDK)/mk/rte.lib.mk +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/lib/core/librte_ring/Makefile b/lib/core/librte_ring/Makefile index 0b196e8..5111d34 100644 --- a/lib/core/librte_ring/Makefile +++ b/lib/core/librte_ring/Makefile @@ -45,4 +45,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_RING)-include := rte_ring.h # this lib needs eal and rte_malloc DEPDIRS-$(CONFIG_RTE_LIBRTE_RING) += lib/core/librte_eal lib/core/librte_malloc -include $(RTE_SDK)/mk/rte.lib.mk +include $(RTE_SDK)/mk/rte.corelib.mk diff --git a/mk/rte.corelib.mk b/mk/rte.corelib.mk new file mode 100644 index 0000000..0f83021 --- /dev/null +++ b/mk/rte.corelib.mk @@ -0,0 +1,81 @@ +# BSD LICENSE +# +# Copyright(c) 2010-2014 Intel Corporation. All rights reserved. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in +# the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Intel Corporation nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +include $(RTE_SDK)/mk/internal/rte.compile-pre.mk +include $(RTE_SDK)/mk/internal/rte.install-pre.mk +include $(RTE_SDK)/mk/internal/rte.clean-pre.mk +include $(RTE_SDK)/mk/internal/rte.build-pre.mk +include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk + +# VPATH contains at least SRCDIR +VPATH += $(SRCDIR) + +LIB := $(patsubst %.a,%.touch,$(LIB)) + +_BUILD = $(LIB) +_INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) +_CLEAN = doclean + +.PHONY: all +all: install + +.PHONY: install +install: build _postinstall + +_postinstall: build + +.PHONY: build +build: _postbuild + +$(LIB): $(OBJS-y) + @mkdir -p $(COREDIR); + @cp -f $? $(COREDIR) && touch $(LIB) + +# +# Clean all generated files +# +.PHONY: clean +clean: _postclean + +.PHONY: doclean +doclean: + $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \ + $(CMDS-all) $(INSTALL-FILES-all) + $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS) + +include $(RTE_SDK)/mk/internal/rte.compile-post.mk +include $(RTE_SDK)/mk/internal/rte.install-post.mk +include $(RTE_SDK)/mk/internal/rte.clean-post.mk +include $(RTE_SDK)/mk/internal/rte.build-post.mk +include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk + +.PHONY: FORCE +FORCE: