mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 01:26:22 +00:00
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>
18 lines
285 B
Makefile
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
|