criu/test/zdtm/Makefile
Pavel Emelyanov 2e13f1f029 test: Get rid of live directory
Move static and transition into zdtm top. We can't move all the micro
tests themselves, as we need to distinguish static from non static (zdtm.py
makes additional checks on static ones).

Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
2016-02-20 13:40:52 +03:00

18 lines
285 B
Makefile

SUBDIRS = lib static transition
default: all
.PHONY: default lib static transition
lib:
$(MAKE) -C lib 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