File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -380,16 +380,20 @@ MKDIR_TARGETS += _output/share/lima
380
380
# ###############################################################################
381
381
# _output/share/lima/templates
382
382
TEMPLATES = $(addprefix _output/share/lima/templates/,$(filter-out experimental,$(notdir $(wildcard templates/* ) ) ) )
383
+ TEMPLATE_DEFAULTS = ${addprefix _output/share/lima/templates/_default/,$(notdir $(wildcard templates/_default/* ) ) }
384
+ TEMPLATE_IMAGES = $(addprefix _output/share/lima/templates/_images/,$(notdir $(wildcard templates/_images/* ) ) )
383
385
TEMPLATE_EXPERIMENTALS = $(addprefix _output/share/lima/templates/experimental/,$(notdir $(wildcard templates/experimental/* ) ) )
384
386
385
387
.PHONY : default_template templates template_experimentals
386
388
default_template : _output/share/lima/templates/default.yaml
387
- templates : $(TEMPLATES )
389
+ templates : $(TEMPLATES ) $( TEMPLATE_DEFAULTS ) $( TEMPLATE_IMAGES )
388
390
template_experimentals : $(TEMPLATE_EXPERIMENTALS )
389
391
390
392
$(TEMPLATES ) : | _output/share/lima/templates
393
+ $(TEMPLATE_DEFAULTS ) : | _output/share/lima/templates/_default
394
+ $(TEMPLATE_IMAGES ) : | _output/share/lima/templates/_images
391
395
$(TEMPLATE_EXPERIMENTALS ) : | _output/share/lima/templates/experimental
392
- MKDIR_TARGETS += _output/share/lima/templates _output/share/lima/templates/experimental
396
+ MKDIR_TARGETS += _output/share/lima/templates _output/share/lima/templates/_default _output/share/lima/templates/_images _output/share/lima/templates/ experimental
393
397
394
398
_output/share/lima/templates/% : templates/%
395
399
cp -aL $< $@
You can’t perform that action at this time.
0 commit comments