doc: postpone deprecation of bypass in ethdev
[dpdk.git] / doc / guides / prog_guide / build_app.rst
index d28d735..138330a 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.
 
@@ -124,5 +124,3 @@ chapter for details.
 *   CPPFLAGS: The flags to use to provide flags to the C preprocessor (only useful when assembling .S files)
 
 *   LDLIBS: A list of libraries to link with (for example, -L /path/to/libfoo - lfoo)
-
-*   NO_AUTOLIBS: If set, the libraries provided by the framework will not be included in the LDLIBS variable automatically.