mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
It's ugly but should work for now. Strictly speaking I need to rework the complete make engine used in zdtm. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Tested-by: Andrew Vagin <avagin@parallels.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
15 lines
198 B
Makefile
15 lines
198 B
Makefile
SUBDIRS = lib live
|
|
|
|
default: all
|
|
.PHONY: default lib live
|
|
|
|
lib:
|
|
$(MAKE) -C lib all
|
|
|
|
live: lib
|
|
$(MAKE) -C live all
|
|
|
|
all: lib live
|
|
@true
|
|
%:
|
|
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
|