You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
467 B
22 lines
467 B
# this makefile contains some syntactic sugar for the toplevel one
|
|
|
|
# strip prefix
|
|
config/with/%: %; @:
|
|
|
|
# just map to specific features
|
|
config/like/%: use/build-%; @:
|
|
|
|
# map and preconfigure
|
|
config/pack/%: use/pack/%
|
|
@$(call set,IMAGE_TYPE,$*)
|
|
|
|
# just preconfigure
|
|
config/name/%:
|
|
@$(call set,IMAGE_NAME,$*)
|
|
|
|
# request particular image subprofile inclusion
|
|
sub/%:
|
|
@$(call add,SUBPROFILES,$(@:sub/%=%))
|
|
|
|
# the final thing will pull the rest in
|
|
build: postclean; @:
|
|
|