mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
Brevity is the soul of wit. Signed-off-by: Kir Kolyshkin <kir@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
13 lines
195 B
Makefile
13 lines
195 B
Makefile
SUBDIRS := lib static transition
|
|
|
|
all: $(SUBDIRS)
|
|
.PHONY: all $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ all
|
|
|
|
static: lib
|
|
transition: lib
|
|
|
|
%:
|
|
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
|