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.
This commit is contained in:
Stefan Schmidt 2015-05-11 12:45:44 +02:00
parent 42e535b086
commit 3d8c0794b8
1 changed files with 2 additions and 2 deletions

View File

@ -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; \