summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2017-01-31 09:49:12 +0000
committerPatrick J Cherry <patrick@bytemark.co.uk>2017-01-31 09:49:12 +0000
commit78b368082d129424b02387a89f848320e4a466bf (patch)
treedafba896943932f0a6245afb6d6d11c00db839e6 /Makefile
parentc68fe975ab4b47436bd90fa701b83a78793b0f32 (diff)
Adds a makefile target to run tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6a0cb38..5ea5645 100644
--- a/Makefile
+++ b/Makefile
@@ -10,8 +10,11 @@ docs: man/byteback-prune.man man/byteback-restore.man man/byteback-backup.man
# To be written
# man/byteback-snapshot.man man/byteback-setup-client.man man/byteback-setup-client-receive.man man/byteback-receive.man
+test:
+ ruby test/tc_*.rb
+
clean:
$(RM) man/*.man
-.PHONY: clean docs all
+.PHONY: clean docs all test