X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=doc%2Fguides%2Fprog_guide%2Fbuild_app.rst;h=138330adc14decd1f9780979eb8abca65ac8bbfe;hb=fdb7f1a2119f1fc5c4c11851eb89d5b0622395d7;hp=d28d73508c6a0e2228e1384a75ccc334105a457f;hpb=fc1f2750a3ec6da919e3c86e59d56f34ec97154b;p=dpdk.git diff --git a/doc/guides/prog_guide/build_app.rst b/doc/guides/prog_guide/build_app.rst index d28d73508c..138330adc1 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. @@ -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.