diff --git a/bindings/Makefile b/bindings/Makefile index 5794ac1a..dff68f38 100644 --- a/bindings/Makefile +++ b/bindings/Makefile @@ -8,7 +8,7 @@ TEST_ARM64 = $(TMPDIR)/test_arm64 TEST_MIPS = $(TMPDIR)/test_mips TEST_X86 = $(TMPDIR)/test_x86 -all: expected python java #oclma ruby +tests: expected python java #oclma ruby expected: $(MAKE) -C ../tests @@ -25,7 +25,7 @@ python: FORCE python python/test_arm64.py > $(TEST_ARM64)_o python python/test_mips.py > $(TEST_MIPS)_o python python/test_x86.py > $(TEST_X86)_o - $(MAKE) test + $(MAKE) test_diff java: FORCE $(MAKE) -C java @@ -34,9 +34,9 @@ java: FORCE cd java; ./run.sh arm64 > $(TEST_ARM64)_o cd java; ./run.sh mips > $(TEST_MIPS)_o cd java; ./run.sh x86 > $(TEST_X86)_o - $(MAKE) test + $(MAKE) test_diff -test: FORCE +test_diff: FORCE $(DIFF) $(TEST)_e $(TEST)_o $(DIFF) $(TEST_ARM)_e $(TEST_ARM)_o $(DIFF) $(TEST_ARM64)_e $(TEST_ARM64)_o