20 lines
434 B
Makefile
20 lines
434 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))
|
||
|
|
||
|
ve/.bare: profile/bare
|
||
|
@$(call add,BASE_PACKAGES,basesystem)
|
||
|
|
||
|
ve/generic: ve/.bare
|
||
|
@$(call add,BASE_LISTS,\
|
||
|
$(call tags,base && (server || network || security || pkg)))
|
||
|
|
||
|
ve/openvpn: ve/.bare
|
||
|
@$(call add,BASE_LISTS,$(call tags,server openvpn))
|
||
|
|
||
|
endif
|