12 lines
311 B
Makefile
12 lines
311 B
Makefile
|
# step 4: build the virtual environment image
|
||
|
|
||
|
MKI_TAR_COMPRESS = $(IMAGE_COMPRESS)
|
||
|
|
||
|
IMAGE_PACKAGES = $(call list,$(BASE_LISTS)) \
|
||
|
$(SYSTEM_PACKAGES) \
|
||
|
$(COMMON_PACKAGES) \
|
||
|
$(BASE_PACKAGES)
|
||
|
|
||
|
all: $(GLOBAL_DEBUG) build-image copy-tree run-image-scripts pack-image \
|
||
|
postprocess $(GLOBAL_CLEAN_WORKDIR)
|