diff options
author | Leonid Lisovskiy <lly.dev@gmail.com> | 2016-05-31 21:43:49 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-05-31 21:00:13 +0200 |
commit | 8b28fc50a3891f823531aa276008e1b1b17e0a79 (patch) | |
tree | ea1b9970e1196022891b2366d530ddbd1196152a /test/Test.mak | |
parent | 3ac3d4e61a1de0c2d0e0d2bebf0d1b111f153f12 (diff) |
tests: Take in account Makefiles that have meaning for rebuild only.
Currently, targets dependancy list don't include Makefile.in,
this leads to incomplete rebuild after target's compiler/linker
flags was changed.
Use "$(wildcard)" function due to Makefile.in could be absent
in subdirectory.
Signed-off-by: Leonid Lisovskiy <lly.dev@gmail.com>
Diffstat (limited to 'test/Test.mak')
-rw-r--r-- | test/Test.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Test.mak b/test/Test.mak index c1b34a7f9..c9b1f5a26 100644 --- a/test/Test.mak +++ b/test/Test.mak @@ -116,7 +116,7 @@ compile: $(COMPILE_TARGETS) G_TARGET_SRCS := $(addsuffix .c,$(G_TARGETS)) U_TARGET_SRCS := $(addsuffix .c,$(U_TARGETS)) -MAKE_SRCS := Makefile $(TESTDIR)Makefile $(TESTDIR)Rules.mak $(TESTDIR)Test.mak +MAKE_SRCS := $(wildcard Makefile.in) $(TESTDIR)Makefile $(TESTDIR)Rules.mak $(TESTDIR)Test.mak $(U_TARGETS): $(U_TARGET_SRCS) $(MAKE_SRCS) $(showlink) |