summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c8dee76..c93b2ab 100644
--- a/Makefile
+++ b/Makefile
@@ -25,11 +25,7 @@ default: $(EXE)
.PHONY: check
check: $(EXE)
- $(error the re-layouting has broken make check for now, sorry.)
- $(EXE) $(EXE) -o testexe
- @cmp $(EXE) testexe
- @rm testexe
- @echo "Check successful."
+ make -C tests check
.PHONY: debug
@@ -53,6 +49,7 @@ clean:
rm -f $(OBJS)
rm -f $(TESTEXES)
rm -rf $(BUILDDIR)/
+ make -C tests clean
.PHONY: distclean