From 4bcbb2ad16932f3d2b899b58e4deb4b62eb839c2 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 2 Feb 2017 00:20:44 -0500 Subject: [PATCH] Issue #165 - Do `make test` using local Cyclone Use the local copy of the Cyclone executable and libraries, instead of trying to use anything installed on the system --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 469c3412..e055c388 100644 --- a/Makefile +++ b/Makefile @@ -174,8 +174,8 @@ examples: cd examples ; make .PHONY: test -test: $(TESTFILES) $(CYCLONE) - $(foreach f,$(TESTSCM), echo tests/$(f) ; ./cyclone tests/$(f).scm && tests/$(f) && rm -rf tests/$(f);) +test: $(TESTFILES) $(CYCLONE) $(COBJECTS) + $(foreach f,$(TESTSCM), echo tests/$(f) ; ./cyclone -A . tests/$(f).scm && tests/$(f) && rm -rf tests/$(f);) .PHONY: tags tags: