Files
rkt/stage1/rootfs/Makefile
T
Vito Caputo bae52e60ae *: switch stage1 to aci image format
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.
2015-01-30 10:51:15 -08:00

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)