mirror of
https://github.com/clearlinux/rkt.git
synced 2026-09-01 11:26:05 +00:00
One may now specify an alternative stage1 in a style like run and fetch: rkt run --stage1-image foo.com/rocket/stage1 app --stage1-image defaults to "stage1.aci" within the same directory as the rkt binary. This is discovered at runtime via "/proc/self/exe"; as long as the rkt executable and stage1.aci share a directory it should "just work" regardless of the directory's location and where rkt is executed from.
17 lines
273 B
Makefile
17 lines
273 B
Makefile
_SUBDIRS=usr shim diagexec enter net-plugins net init
|
|
SUBDIRS=$(_SUBDIRS) aggregate
|
|
export CFLAGS=-Wall -Os
|
|
|
|
.PHONY: test clean subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
clean: $(SUBDIRS)
|
|
|
|
test: $(SUBDIRS)
|
|
|
|
aggregate: $(_SUBDIRS)
|