From: Thomas Monjalon Date: Tue, 12 Jul 2016 10:11:06 +0000 (+0200) Subject: mk: fix default rule of test subdirectory X-Git-Tag: spdx-start~6172 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d7cdc5065bb78c28607aecb0b3576d7690c71216;hp=d7cdc5065bb78c28607aecb0b3576d7690c71216;p=dpdk.git mk: fix default rule of test subdirectory When using "make -C app/test" (with RTE_SDK/RTE_TARGET adjusted) without specifying the rule (all), the build is not done. Indeed the default rule is not "all" anymore since there are some rules added for external resources link. It is fixed by adding a reference to "all" at the top of the file which makes it the default rule. Note that make app/test_sub (without environment variable) is preffered. Fixes: ab64f5df8004 ("app/test: support resources externally linked") Reported-by: Reshma Pattan Signed-off-by: Thomas Monjalon Acked-by: Reshma Pattan ---