Commit 75fef9a6 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

test/*/Makefile: fix PHONY targets

Broken by my commit 1fa0c0c0. I swear I was not drunk.
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent ee1643f4
SUBDIRS = lib live SUBDIRS = lib live
default: all default: all
PHONY: default all .PHONY: default all
%: %:
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
...@@ -32,7 +32,7 @@ DEPEND.c = $(COMPILE.c) -MM -MP ...@@ -32,7 +32,7 @@ DEPEND.c = $(COMPILE.c) -MM -MP
all: $(TST) all: $(TST)
install: all install: all
PHONY: all install .PHONY: all install
$(TST_NOFILE:%=%.pid): %.pid: % $(TST_NOFILE:%=%.pid): %.pid: %
$(<D)/$(<F) --pidfile=$@ --outfile=$<.out $(<D)/$(<F) --pidfile=$@ --outfile=$<.out
......
...@@ -29,7 +29,7 @@ DEPEND.c = $(COMPILE.c) -MM -MP ...@@ -29,7 +29,7 @@ DEPEND.c = $(COMPILE.c) -MM -MP
all: $(TST) all: $(TST)
install: all install: all
PHONY: all install .PHONY: all install
$(TST_NOFILE:%=%.pid): %.pid: % $(TST_NOFILE:%=%.pid): %.pid: %
$(<D)/$(<F) --pidfile=$@ --outfile=$<.out $(<D)/$(<F) --pidfile=$@ --outfile=$<.out
......
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