summaryrefslogtreecommitdiff
path: root/build/Makefile.decl
diff options
context:
space:
mode:
Diffstat (limited to 'build/Makefile.decl')
-rw-r--r--build/Makefile.decl11
1 files changed, 11 insertions, 0 deletions
diff --git a/build/Makefile.decl b/build/Makefile.decl
new file mode 100644
index 0000000..c90c22b
--- /dev/null
+++ b/build/Makefile.decl
@@ -0,0 +1,11 @@
+NULL =
+
+memcheck:
+ @for dir in $(SUBDIRS); do \
+ test "$$dir" = "." || $(MAKE) -C $$dir memcheck; \
+ done
+
+leakcheck:
+ @for dir in $(SUBDIRS); do \
+ test "$$dir" = "." || $(MAKE) -C $$dir leakcheck; \
+ done