default: tests.log

MEMORY_ANALYZER_EXE=../../../src/memory-analyzer/memory-analyzer
GOTO_HARNESS_EXE=../../../src/goto-harness/goto-harness
CBMC_EXE=../../../src/cbmc/cbmc
GOTO_CC_EXE=../../../src/goto-cc/goto-cc
GOTO_GCC_EXE=../../../src/goto-cc/goto-gcc

test:
	@../test.pl -e -p -c "../chain.sh $(GOTO_CC_EXE) $(GOTO_HARNESS_EXE) $(MEMORY_ANALYZER_EXE) $(CBMC_EXE) $(GOTO_GCC_EXE)"

tests.log: ../test.pl
	@../test.pl -e -p -c "../chain.sh $(GOTO_CC_EXE) $(GOTO_HARNESS_EXE) $(MEMORY_ANALYZER_EXE) $(CBMC_EXE) $(GOTO_GCC_EXE)"

clean:
	find . -name '*.out' -execdir $(RM) '{}' \;
	find . -name '*.gb' -execdir $(RM) '{}' \;
	find . -name '*.json' -execdir $(RM) '{}' \;
	$(RM) tests.log
