mbuf: remove control mbuf
[dpdk.git] / doc / guides / prog_guide / dev_kit_root_make_help.rst
index 6a48665..d7c4106 100644 (file)
@@ -138,7 +138,7 @@ Documentation Targets
 
 *   doc
 
-    Generate the Doxygen documentation (API, html and pdf).
+    Generate the documentation (API and guides).
 
 *   doc-api-html
 
@@ -152,40 +152,12 @@ Documentation Targets
 
     Generate the guides documentation in pdf.
 
-
-Deps Targets
-------------
-
-*   depdirs
-
-    This target is implicitly called by make config.
-    Typically, there is no need for a user to call it,
-    except if DEPDIRS-y variables have been updated in Makefiles.
-    It will generate the file  $(RTE_OUTPUT)/.depdirs.
-
-    Example:
-
-    .. code-block:: console
-
-        make depdirs O=mybuild
-
-*   depgraph
-
-    This command generates a dot graph of dependencies.
-    It can be displayed to debug circular dependency issues, or just to understand the dependencies.
-
-    Example:
-
-    .. code-block:: console
-
-        make depgraph O=mybuild > /tmp/graph.dot && dotty /tmp/ graph.dot
-
 Misc Targets
 ------------
 
 *   help
 
-    Show this help.
+    Show a quick help.
 
 Other Useful Command-line Variables
 -----------------------------------
@@ -241,10 +213,3 @@ the EXTRA_CFLAGS environment variable should be set before compiling as follows:
 .. code-block:: console
 
     export EXTRA_CFLAGS='-O0 -g'
-
-The DPDK and any user or sample applications can then be compiled in the usual way.
-For example:
-
-.. code-block:: console
-
-    make install T=x86_64-native-linuxapp-gcc make -C examples/<theapp>