a18295f223
lib/*.mk aren't going to be parsed for build targets in the near future; and the early placement of those targets was superseded by a dedicated configuration snippet directory so just move these bits there.
18 lines
358 B
Makefile
18 lines
358 B
Makefile
# step 2: build up virtual environment's configuration
|
|
|
|
ifndef MKIMAGE_PROFILES
|
|
$(error this makefile is designed to be included in toplevel one)
|
|
endif
|
|
|
|
ifeq (ve,$(IMAGE_CLASS))
|
|
|
|
# no package management and networking
|
|
ve/.bare: profile/bare
|
|
@$(call add,BASE_PACKAGES,basesystem)
|
|
|
|
# add those
|
|
ve/.base: ve/.bare
|
|
@$(call add,BASE_PACKAGES,etcnet apt)
|
|
|
|
endif
|