build: Add correct dependency for check-build target.

We need to build everythign else before. Without this dep running check-build
as first target from a fresh build will fail due to wrong dependency handling
(like no eolian run over the eo files, etc)

Inspired by D2489 from Kabeer Khan.
This commit is contained in:
Stefan Schmidt 2015-05-11 12:34:54 +02:00
parent 9bf8a0e56b
commit 42e535b086
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ endif
DIST_SUBDIRS += $(EXAMPLES_SUBDIRS)
if EFL_ENABLE_TESTS
check-build:
check-build: all
@$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
endif