Commit 98f25e91 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Pavel Emelyanov

test/zdtm/Makefile: simplify

Brevity is the soul of wit.
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 04db5336
SUBDIRS = lib static transition
SUBDIRS := lib static transition
default: all
.PHONY: default lib static transition
all: $(SUBDIRS)
.PHONY: all $(SUBDIRS)
lib:
$(MAKE) -C lib all
$(SUBDIRS):
$(MAKE) -C $@ all
static: lib
$(MAKE) -C static all
transition: lib
$(MAKE) -C transition all
all: lib static transition
@true
%:
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
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