From 3d8c0794b8cc618811e93744c805adf14ea0b674 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 11 May 2015 12:45:44 +0200 Subject: [PATCH] build: Fix benchmark and exmaples dep on all target as well. Same as the check-build target I fixed in my previous commit these two need the all dependency to compile everything needed before being run. --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 8888882ac4..5ff8e1dd42 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -91,7 +91,7 @@ benchmarks/eo \ benchmarks/evas DIST_SUBDIRS += $(BENCHMARK_SUBDIRS) -benchmark: all-am +benchmark: all @for d in $(BENCHMARK_SUBDIRS); do \ echo "Making benchmark in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d benchmark; \ @@ -135,7 +135,7 @@ check-build: all @$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) endif -examples: all-am +examples: all @for d in $(EXAMPLES_SUBDIRS); do \ echo "Making examples in $$d"; \ $(MAKE) $(AM_MAKEFLAGS) -C $$d examples || exit 1; \