Commit 4f9b66f0 authored by Kinsbursky Stanislav's avatar Kinsbursky Stanislav Committed by Pavel Emelyanov

make: specify DEPS implicitly

Instead of using wildcard expressions like "*.c" lets implicitely specify
desired dependence files.
Signed-off-by: 's avatarStanislav Kinsbursky <skinsbursky@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent ba824193
...@@ -147,7 +147,7 @@ help: ...@@ -147,7 +147,7 @@ help:
$(E) ' rebuild - Force-rebuild of [*] targets' $(E) ' rebuild - Force-rebuild of [*] targets'
$(E) ' test - Run zdtm test-suite' $(E) ' test - Run zdtm test-suite'
deps-targets := %.o %.s %.i $(PROGRAM) zdtm test-legacy deps-targets := $(OBJS) $(patsubst %.o,%.s,$(OBJS)) $(patsubst %.o,%.i,$(OBJS)) $(PROGRAM) zdtm test-legacy
.DEFAULT_GOAL := $(PROGRAM) .DEFAULT_GOAL := $(PROGRAM)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment