ve.mk 443 Bytes
Newer Older
1 2
# step 2: build up virtual environment's configuration

3
ifeq (,$(MKIMAGE_PROFILES))
4 5 6 7 8
$(error this makefile is designed to be included in toplevel one)
endif

ifeq (ve,$(IMAGE_CLASS))

9
# no package management and networking
10 11 12
ve/.bare: profile/bare
	@$(call add,BASE_PACKAGES,basesystem)

13 14 15 16 17 18 19
# add package management
ve/.apt: ve/.bare
	@$(call add,BASE_PACKAGES,apt)

# also add networking
ve/.base: ve/.apt
	@$(call add,BASE_PACKAGES,etcnet)
Michael Shigorin's avatar
Michael Shigorin committed
20

21
endif