summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8b92448..e9a99c2 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,9 @@ default: build
$(TARGETS): $(SUBDIRS)
$(SUBDIRS):
- $(MAKE) -C $@ $(MAKECMDGOALS)
+ @$(MAKE) -C $@ $(MAKECMDGOALS)
-.PHONY: $(TARGETS) $(SUBDIRS)
+test:
+ @$(MAKE) -C test
+
+.PHONY: $(TARGETS) $(SUBDIRS) test