app/cmdline_test: add missing dependencies
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 2 Dec 2015 04:05:08 +0000 (20:05 -0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 2 Dec 2015 23:02:26 +0000 (00:02 +0100)
The cmdline test is missing a necessary dependency on other components.
This caused a build failure when doing parallel builds.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Declan Doherty <declan.doherty@intel.com>
app/cmdline_test/Makefile

index e9eafd2..c6169f5 100644 (file)
@@ -47,6 +47,9 @@ SRCS-y += commands.c
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
+# this application needs libraries first
+DEPDIRS-y += lib drivers
+
 include $(RTE_SDK)/mk/rte.app.mk
 
 endif