aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2014-03-06 10:41:21 +1300
committerRobert Collins <rbtcollins@hp.com>2014-03-06 10:41:21 +1300
commit9df35c186f14d3b3b76a3946981ad6ec5cf9336f (patch)
treef1049e202c9917a8a708855d9ad9d5c880d23fad /Makefile
parent1f75fd8fd3086febb5ac37cb921fa82eb2cc8c8e (diff)
Add a check target.
Just developer convenience - I'm used to autotools 'make check' environments. Change-Id: Idf5bb882f798d22d4513756b5273d4ae19caa5c0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dda8f2c4..75b8a4a5 100644
--- a/Makefile
+++ b/Makefile
@@ -36,10 +36,12 @@ undercloud-vm-ironic.yaml: undercloud-source.yaml undercloud-vm-ironic-source.ya
python ./tripleo_heat_merge/merge.py $^ > $@.tmp
mv $@.tmp $@
+check: test
+
test:
@bash test_merge.bash
clean:
rm -f $(generated_templates)
-.PHONY: clean overcloud.yaml
+.PHONY: clean overcloud.yaml check