criu/test/zdtm/Makefile
Cyrill Gorcunov d01025edd9 zdtm: Force lib to be built before live targets
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>
2014-01-20 14:14:27 +04:00

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