]> git.droids-corp.org - dpdk.git/commitdiff
doc: fix prefix in file references
authorOlivier Matz <olivier.matz@6wind.com>
Thu, 19 Mar 2015 16:35:12 +0000 (17:35 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 31 Mar 2015 00:55:07 +0000 (02:55 +0200)
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 <olivier.matz@6wind.com>
doc/guides/prog_guide/build_app.rst
doc/guides/prog_guide/dev_kit_build_system.rst
doc/guides/prog_guide/ext_app_lib_make_help.rst

index d28d73508c6a0e2228e1384a75ccc334105a457f..d4a326152057fcb261908ca306029a6f33a315b0 100644 (file)
@@ -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.
 
index 23944f42da968296584b172b23464f09b6705517..cf5c96fb327cf2a2d07e4f45f6c5fa72cf7b7edf 100644 (file)
@@ -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 <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 <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:
 
index bc5e23883c23081aae38a23d503bfdf369e2a60e..c69e62cfff2c37a1053002ba0595f190cc4d3d1e 100644 (file)
@@ -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
 -------------