From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 08D5D5677 for ; Thu, 19 Mar 2015 17:35:22 +0100 (CET) Received: by wgra20 with SMTP id a20so67297459wgr.3 for ; Thu, 19 Mar 2015 09:35:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=EO8ygeRDZV8r8wNwP+96XuGesWUMZGHH+O01ysiec+8=; b=IZo4kcLAo3aBs7kqzip1BEUeBtovOYJzod64yfJ6OdsgOW4ijchpw/w1OUhebKpRiz yec1l3LPRNI8kR9KF0RjUXvopBVxaxM1rG8WqoIxyjEck753p78Cr+dvIHypjjIqPVNs C8i8PLGlPIh60qoFvFOFXg8BjVmab8z1iMgp0mnNg+1Is75JYwY7uGCfqPkLZeyoPJ6q kYj45xbJO++64j4tGqdH0Fnqj8nGQ6cmz9JYrnOEEKgkuouMxV4Yog+qQJknKqv57GIy se5HaT8/XNWN8BFuul6/HA0XazMOPiasYR9NqFRUj3/OediBoZpJCzaCf2gb6zxxhLpl gObQ== X-Gm-Message-State: ALoCoQkm1QFiJeD7puF79T5PKDyBOBDkX0EvA9oX1Sz8Ld9Gey0fH96SoTxtHea6SO9TmqpapaL3 X-Received: by 10.180.78.202 with SMTP id d10mr17798941wix.25.1426782921855; Thu, 19 Mar 2015 09:35:21 -0700 (PDT) Received: from glumotte.dev.6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id uo6sm2589530wjc.49.2015.03.19.09.35.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 19 Mar 2015 09:35:21 -0700 (PDT) From: Olivier Matz To: dev@dpdk.org Date: Thu, 19 Mar 2015 17:35:12 +0100 Message-Id: <1426782912-30887-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.1.4 Subject: [dpdk-dev] [PATCH] doc: replace DPDK.xyz.mk by rte.xyz.mk 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: , X-List-Received-Date: Thu, 19 Mar 2015 16:35:22 -0000 There are some references to DPDK.xyz.mk files that do not exist in the dpdk tree. This was probably the result of an automatic replacement, so restore the proper file names which are rte.xyz.mk. Signed-off-by: Olivier Matz --- doc/guides/prog_guide/build_app.rst | 8 ++++---- doc/guides/prog_guide/dev_kit_build_system.rst | 10 +++++----- doc/guides/prog_guide/ext_app_lib_make_help.rst | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/guides/prog_guide/build_app.rst b/doc/guides/prog_guide/build_app.rst index d28d735..d4a3261 100644 --- a/doc/guides/prog_guide/build_app.rst +++ b/doc/guides/prog_guide/build_app.rst @@ -82,9 +82,9 @@ Application Makefile The default makefile provided with the Hello World sample application is a good starting point. It includes: -* $(RTE_SDK)/mk/DPDK.vars.mk at the beginning +* $(RTE_SDK)/mk/rte.vars.mk at the beginning -* $(RTE_SDK)/mk/DPDK.extapp.mk at the end +* $(RTE_SDK)/mk/rte.extapp.mk at the end The user must define several variables: @@ -97,9 +97,9 @@ Library Makefile It is also possible to build a library in the same way: -* Include $(RTE_SDK)/mk/DPDK.vars.mk at the beginning. +* Include $(RTE_SDK)/mk/rte.vars.mk at the beginning. -* Include $(RTE_SDK)/mk/DPDK.extlib.mk at the end. +* Include $(RTE_SDK)/mk/rte.extlib.mk at the end. The only difference is that APP should be replaced by LIB, which contains the name of the library. For example, libfoo.a. diff --git a/doc/guides/prog_guide/dev_kit_build_system.rst b/doc/guides/prog_guide/dev_kit_build_system.rst index 23944f4..cf5c96f 100644 --- a/doc/guides/prog_guide/dev_kit_build_system.rst +++ b/doc/guides/prog_guide/dev_kit_build_system.rst @@ -194,7 +194,7 @@ To compile an application, the user must set the RTE_SDK and RTE_TARGET environm cd /path/to/my_app For a new application, the user must create their own Makefile that includes some .mk files, such as -${RTE_SDK}/mk/DPDK.vars.mk, and ${RTE_SDK}/mk/ DPDK.app.mk. +${RTE_SDK}/mk/rte.vars.mk, and ${RTE_SDK}/mk/ rte.app.mk. This is described in :ref:`Building Your Own Application `. @@ -217,11 +217,11 @@ General Rules For DPDK Makefiles In the DPDK, Makefiles always follow the same scheme: -#. Include $(RTE_SDK)/mk/DPDK.vars.mk at the beginning. +#. Include $(RTE_SDK)/mk/rte.vars.mk at the beginning. #. Define specific variables for RTE build system. -#. Include a specific $(RTE_SDK)/mk/DPDK.XYZ.mk, where XYZ can be app, lib, extapp, extlib, obj, gnuconfigure, +#. Include a specific $(RTE_SDK)/mk/rte.XYZ.mk, where XYZ can be app, lib, extapp, extlib, obj, gnuconfigure, and so on, depending on what kind of object you want to build. :ref:`See Makefile Types ` below. @@ -231,7 +231,7 @@ In the DPDK, Makefiles always follow the same scheme: .. code-block:: make - include $(RTE_SDK)/mk/DPDK.vars.mk + include $(RTE_SDK)/mk/rte.vars.mk # binary name APP = helloworld @@ -242,7 +242,7 @@ In the DPDK, Makefiles always follow the same scheme: CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) - include $(RTE_SDK)/mk/DPDK.extapp.mk + include $(RTE_SDK)/mk/rte.extapp.mk .. _Makefile_Types: diff --git a/doc/guides/prog_guide/ext_app_lib_make_help.rst b/doc/guides/prog_guide/ext_app_lib_make_help.rst index bc5e238..c69e62c 100644 --- a/doc/guides/prog_guide/ext_app_lib_make_help.rst +++ b/doc/guides/prog_guide/ext_app_lib_make_help.rst @@ -36,11 +36,11 @@ External Application/Library Makefile help External applications or libraries should include specific Makefiles from RTE_SDK, located in mk directory. These Makefiles are: -* ${RTE_SDK}/mk/DPDK.extapp.mk: Build an application +* ${RTE_SDK}/mk/rte.extapp.mk: Build an application -* ${RTE_SDK}/mk/DPDK.extlib.mk: Build a static library +* ${RTE_SDK}/mk/rte.extlib.mk: Build a static library -* ${RTE_SDK}/mk/DPDK.extobj.mk: Build objects (.o) +* ${RTE_SDK}/mk/rte.extobj.mk: Build objects (.o) Prerequisites ------------- -- 2.1.4