mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-14 09:57:25 +00:00
- statically make containerd symlinks so rootfs can be read only - run binfmt_misc in a containerd container - ship arm, aarch64, ppc64le qemu static versions that always "just work" as this is supported in Linux 4.8 fix #53 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
142 B
Makefile
11 lines
142 B
Makefile
DIRS=$(wildcard */)
|
|
.PHONY: clean $(DIRS)
|
|
|
|
default: $(DIRS)
|
|
|
|
$(DIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
for f in $(DIRS); do $(MAKE) -C $$f clean; done
|