From 5a1bc21088394c87dd7b0a272cf29b1fc5ceeac9 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Thu, 6 Oct 2016 15:40:15 +0100 Subject: [PATCH] Update Makefile to specify dependencies properly for tests --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ecc58ed..5626aac 100644 --- a/Makefile +++ b/Makefile @@ -100,10 +100,10 @@ check_objs: $(CHECK_OBJ) check_bins: $(CHECK_BINS) -check: $(CHECK_BINS) - r=true ; for bin in $^; do $$bin || r=false; done ; $$r +check: $(OBJS) $(CHECK_BINS) + r=true ; for bin in $(CHECK_BINS); do $$bin || r=false; done ; $$r -acceptance: +acceptance: build cd tests/acceptance && RUBYOPT='-I.' ruby nbd_scenarios -v test: check acceptance