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
This commit is contained in:
Justin Ethier 2017-02-02 00:20:44 -05:00
parent 17d819a399
commit 4bcbb2ad16

View file

@ -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: