blob: 0d7d3f84c15e547d961a4bd7d4cabc839d74cc0f (
plain)
1
2
3
4
5
6
7
8
9
10
|
overcloud.yaml: overcloud-source.yaml nova-compute-instance.yaml
python merge.py $< > $@.tmp
mv $@.tmp $@
undercloud-vm-tuskar.yaml: undercloud-vm.yaml tuskar-source.yaml
python merge.py $^ > $@.tmp
mv $@.tmp $@
test:
@bash test_merge.bash
|